全部-
谷歌搜索并尝试了大约 20 分钟,但似乎无法弄清楚这一点。有谁知道为什么我不能得到 Search: 在同一行?
我试过显示:内联,显示:块,浮动:左/右,清除:两者,但无济于事。即使使用 chrome 检查器,我也无法弄清楚它为什么不能正常工作。
编辑:粘贴相关代码
<li>Search: <input type="text" name="quest_search"></li>
对应的css:
header {
background: #f6f6f6;
height: 58px;
border-bottom: 1px solid #eaeaea;
margin-bottom: 60px;
}
/* Social Links */
header aside ul {
padding-top: 18px;
}
/* Main Navigation */
header .select-menu { display: none; }
header nav { position: relative; }
header nav ul {
list-style: none;
float: right;
padding: 22px 0px 0px 0px;
}
header nav ul li {
float: left;
margin-left: 30px;
position: relative;
}
header nav ul li a{
color: #b5b5b5;
font-size: 12px;
-webkit-transition:color 0.2s ease-in;
-moz-transition:color 0.2s ease-in;
-o-transition:color 0.2s ease-in;
transition:color 0.2s ease-in;
}
header nav ul li a:hover { color: #777; }
header nav ul li.current a{ color: #555; font-weight: bold; }
header nav span.arrow {
width: 24px;
height: 13px;
background: url('../images/light-nav_arrow.png') no-repeat;
display: none;
position: absolute;
top: 58px;
}
http://dump.tanaris4.com/so/cfs.html
提前致谢!