gpt4 book ai didi

html - 为什么我的搜索栏中的占位符文本没有出现在 Firefox 中

转载 作者:行者123 更新时间:2023-11-28 04:10:10 26 4
gpt4 key购买 nike

我有一个跨浏览器问题,我的 Rails 应用程序的搜索栏中嵌套的占位符文本没有出现在 Mozilla 中,尽管在所有其他浏览器中工作得很好。

我四处寻找答案,但没有成功。

在 Safari、Chrome 和 Opera 中呈现的搜索栏。

Search bar rendered in Safari, Chrome and Opera

使用 Firefox 呈现的搜索栏。

Search bar rendered using Firefox

_header.html.erb

<nav class="navbar navbar-static-top navbar-default" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<%= image_tag('nippon.svg', alt: "Nippon Beauty", class: "navbar-brand-icon") %>
</a>
</div>

<input type="text" class="searchTerm" placeholder="What type of Skincare product would you like?">

<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav navbar-right">
<li><%= link_to "Home", root_path %></li>
<li><%= link_to "About", about_path %></li>
<li><%= link_to "Login", new_user_session_path %></li>
<li><%= link_to "Signup", new_user_registration_path %></li>
<% if user_signed_in? %>
<li><%= link_to "Account Settings", edit_user_registration_path %></li>
<li><%= link_to "Log out", destroy_user_session_path, method: :delete %></li>
<% else %>
<% end %>
</ul>
</div><!-- /.navbar-collapse -->
</nav>

CSS

@import url(https://fonts.googleapis.com/css?family=Open+Sans);

body{
font-family: 'Open Sans', sans-serif;
}


.searchTerm {
position: absolute;
left: 550px;
top: 20px;
width: 370px;
border: 15px;
background: #F2F2F2;
padding: 25px;
height: 40px;
border-radius: 8px;
}

最佳答案

问题是您使用的填充总量大于输入的高度。

内边距:25px;

相同

padding-top: 25px;填充底部:25px;

因此垂直填充量为 50px,但您将高度设置为仅 40px。使您的高度大于填充量,您将看到文本。


当然,问题变成了为什么不会这会导致其他浏览器出现问题。看起来 Chrome 通过在填充大于给定高度时剪掉填充来处理它。如果我在 Chrome 中去掉你的 CSS 的高度,搜索框实际上会变大。我猜其他浏览器也会做同样的事情。

我的猜测是,问题在于 CSS 在不同浏览器中的应用顺序。 Chrome 添加填充,然后更改结果的高度。 Firefox 更改高度,然后将填充添加到结果中。同样,这只是一个猜测,但这似乎正在发生。

关于html - 为什么我的搜索栏中的占位符文本没有出现在 Firefox 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36986647/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com