所以基本上我已经制作了一堆冲突的div
,但除了我的导航栏之外,它们都设法工作了。我尝试将top
容器内的不同容器放在一起,通过使用百分比而不是像素自动适应屏幕。但每当我在较小的屏幕上打开我的网站时,栏中的图标最终会跳到下一行?
如何使用纯CSS 自动调整按钮和图像的大小以使它们全部适合一行?此外,导航栏的主div
应该高于背景分割。
如果你看看我的CSS,我也尝试过设置
.navbar>li {
display: inline-block;
事实证明这根本没有效果
CSS:
.top {
background-color: ;
margin-left: 3%;
margin-right: 3%;
margin: 0 auto;
}
.navbar {
background-color: #FDF3E7;
border-radius: 5px;
margin-left: 15%;
margin-right: 15%;
border: 10px double #C63D0F;
padding-top: 1px;
padding-left: 10%;
padding-right 10%;
padding-bottom: 0px;
position: relative;
display: inline-block;
width: 60%;
}
.navbar>li {
display: inline-block;
margin: 0 auto;
}
.hot-container {
min-height: 40px;
margin-top: 20px;
width:80%;
text-align: center;
position: relative;
display: inline-block;
margin: 0 auto;
}
a.btn {
display: inline-block;
color: #666;
background-color: #eee;
text-transform: uppercase;
letter-spacing: 2px;
font-size: 12px;
padding: 10px 15px;
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border: 1px solid rgba(0,0,0,0.3);
border-bottom-width: 1px;
position: relative;
width: 78%
}