0
私はちょうどhtml
、css
、boostrap
を学んでいます。 グリッドの下にアイテム(navbar
、タグdiv
、...)を配置したいのですが、ブラウザのサイズを変更するとグリッドに配置されます。グリッドシステムの下にアイテムを置く方法(サイズ変更)
#header {
height: 40px;
}
* {
box-sizing: border-box;
}
#header>div {
padding: 0;
line-height: 44px;
}
#header div a {
text-transform: uppercase;
text-decoration: none;
display: block;
font-size: 12px;
font-weight: 600;
height: 44px;
color: #666;
text-align: center;
margin: 0 auto;
float: both;
}
#header div:hover a {
background-color: lightgrey;
text-decoration: none;
}
<div id="header" class="container-fluid">
<div class="contactinfo col-sm-8">
<p>
<strong>Call : </strong> +84902xxxxxx | <strong>Email: </strong> [email protected]
</p>
</div>
<div class="col-sm-2 signin">
<a href="#" id="account">Sign in</a>
</div>
<div class="col-sm-2 signup" >
<a href="#" id="cart">Sign up</a>
</div>
</div>