响应式搜索框和shell内的元素

时间:2014-03-20 08:07:15

标签: html css

我在创建具有移动网站搜索功能的响应式复选框时遇到问题。我打算在这个网站上添加jquery函数,所以我想创建一个外壳,然后在shell里面放一个独特的logo元素和一个独特的搜索元素。当我运行此代码时,搜索框有高度问题。我希望高度能够响应,而不是静止。

HTML:     

<head>
    <meta charset="utf-8">
</head>

<body>

    <style type="text/css">
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.outer-top{
    border: 1px solid black;
    }

.logo {
    border:1px solid black;
    text-align:center;
    float:left;
    width:25%;
    height: 15%;
    }
.searchbar {
    border:1px solid black;
    text-align:center;
    float:left;
    width:75%;
    height:15%;
    }

    </style>

    <div class="outer-top">
            <div class="logo">
                <p>logo</p>
            </div>
            <div class="searchbar">
                <input type="text" name="search"><input type="submit" value="Search" class="sbutton">
            </div>
    </div>



</body>
</html>

1 个答案:

答案 0 :(得分:0)

试试这个

.outer-top{
   border: 1px solid black;
   height:400px;
}

你的外顶部div需要指定一个高度。在我自己的情况下,我的是400px