html - CSS float 行为神秘

标签 html css twitter-bootstrap

我正在使用 Bootstrap 3 创建移动响应网站。 我的网页上有两个顶级菜单。顶部菜单有一个向右浮动的 ul,下面的菜单有两个组件:向左浮动的 ul 和向右浮动的搜索框。 虽然 float: right 正在搜索框上工作,但它并没有像它应该的那样移动到最右边;相反,它从右边留下了一些空间。我没有对搜索框应用任何右边距。

但是,当我从顶部菜单的 ul (.settings-menu ul) 中删除 float 时,搜索框会移动到最右边。这两个菜单位于不同的 div 中。我不明白为什么会这样。有人可以解释为什么会发生这种情况并推荐解决方案吗?我的代码如下:

<div class="settings-menu">   <!-- Top settings/registration panel -->
    <ul>
        <li><a>Register</a></li>
        <li><a>LogIn</a></li>
        <li><a>Wishlist(0)</a></li>
        <li><a>My Account</a></li>
    </ul>
</div>

<nav class="navbar">

    <div class="navbar-header">
      <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#menu-collapse">
            <span class="sr-only">Toggle navigation</span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
            <span class="icon-bar"></span>
      </button>
    </div>

    <div class="collapse navbar-collapse" id="menu-collapse">
      <ul class="nav navbar-nav">
        <li><a href="#">Home Page</a></li>
        <li><a href="#">Shop by category</a></li>
        <li><a href="#">Designers</a></li>
        <li><a href="#">Blog</a></li>
        <li><a href="#">Contact Us</a></li>
      </ul>

      <form class="navbar-form" role="search">
        <label for="id_search"></label>
        <input type="text" id="id_search" class="form-control" name="search_item" placeholder="Search Store">
        <button type="submit" name="search_button" id="id_search_button" class="search-button"></button>
      </form>
    </div><!-- /.navbar-collapse -->

</nav>

CSS:

body {
    font-family: arial;
    font-size: 12px;
    background: url("images/texture_2.jpg")
}

.settings-menu {
    background-color: #E87772;
    border-bottom: 4px solid #F1ADAA;
    height: 36px;
}

.settings-menu ul {
    float: right;
    width: auto;
    margin-right: 5%;
}

.settings-menu ul li{
    display: inline-block;
    padding: 5px;
    list-style: none;
}

.settings-menu ul li a{
    color: #fff;
    font-size: 14px;
}

nav {
    background-color: #fff;
    width: 100%;
}

nav ul {
    float: left;
}

.navbar-nav > li {     /*over-riding bootstrap's classes */
    display: inline-block;
    padding: 7px;   
    margin-right: 7px; 
}   

.navbar-nav > li > a{
    font-size: 16px;
    color: rgb(80,80,80);
    padding: 0px;
    padding-bottom: 7px;
}

.navbar-nav > li > a:hover{
    background-color: #fff;
}

.navbar-nav > li > a:after{
    background: none repeat scroll 0 0 #e87772;
    bottom: 0;
    content: " ";
    height: 2px;
    left: 50%;
    position: absolute;
    transition: all 0.25s ease-in-out 0s;
    width: 0;
}

.navbar-nav > li > a:hover:after, .navbar-nav > li > a:focus:after {
    left: 0;
    width: 100%;
}       

.navbar-form  {
    float: right;
    display: inline-block;
    margin-top: 0;
    width: 285px;
    height: 45px;
}

.navbar-form .search-button {
    background: url("images/icon-search-button.png") no-repeat;
    border-radius: 100%;
    background-color: #E87772;
    height: 38px;
    width: 38px;
    background-position: center;
    border: none;
    transition-property: height, width;
    transition-duration: 50ms;
    transition-timing-function: ease-in-out;
}


.navbar-form .search-button:hover {
    height: 40px;
    width: 40px;    
}

.navbar-form .cart-button {
    background: url("images/icon-cart-link.png") no-repeat;
    border-radius: 100%;
    background-color: #E87772;
    height: 38px;
    width: 38px;
    background-position: center;
    border: none;
    transition-property: height, width;
    transition-duration: 50ms;
    transition-timing-function: ease-in-out;
}

.navbar-form .cart-button:hover {
    height: 40px;
    width: 40px;    
}


#id_search {              /* for text-box */
    border-radius: 0px;
    border-right: none;
    border-left: none;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
    box-shadow: none;
    margin-top: 5px;
}

#search-box {
    float: right;
}

最佳答案

.navbar-collapse.collapse 有 Bootstrap 的默认填充。试试这个 Demo

.navbar-collapse.collapse{
    padding-right :0 !important;
}

关于html - CSS float 行为神秘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24671028/

相关文章:

javascript - 排版效果在 IE9 上无法正常工作

html - 使用 first-of-type 只选择第一个 p 标签

javascript - JqueryUI 和 bootstrap 对对话框显示的干扰

javascript - jQuery .blur() - 不要隐藏事件的 div

html - 小文字,大图片,不要旁边的段落

jquery - URL 中的 ID 不隐藏其他 div

php - 使用 MYSQL 和 PHP 以 HTML 形式进行搜索

javascript - 缩放 div 以适合窗口但保持纵横比

html - 固定高度 div 内的 Bootstrap 下拉菜单

javascript - 在移动设备上禁用静态固定导航栏脚本