我想显示响应式视图的导航栏,其中包含以下元素序列
菜单(按钮) - 品牌(居中) - 搜索(图标) - 登录 (图标)
我已经尝试了很多方法来完成它但没有成功。目前,在移动分辨率下,它们分为三排。
以下是> bootply
中的代码对于桌面视图,元素按照所需顺序对齐。
是否可以按照移动视图的指定顺序对齐它们?
答案 0 :(得分:0)
使用此:
@media screen and (max-width: 768px) {
.row {
position: relative;
}
.navbar-header {
left: 0;
position: absolute;
top: 0;
}
.navbar-brand {
float: none;
box-sizing: border-box;
height: 50px;
padding: 14px 50px;
text-align: center;
width: 100%;
}
.navbar-right {
margin: 0;
position: absolute;
right: 0;
top: 0;
}
.navbar-right > li {
display: inline-block;
margin-top: 4px;
}
}