html 在月光主题下的标题下方移动导航
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 在月光主题下的标题下方移动导航相关的知识,希望对你有一定的参考价值。
<!-- Move Navigation below Header on Moonlight Theme -->
<style>
@media screen and (min-width:992px) {
nav#main {
position: relative;
display: block;
width: 100%;
height: auto !important;
}
nav#main .container {
top: 0 !important;
text-align: center;
}
.navbar-nav {
float: none;
display: inline-block;
}
nav#main .container ul li a {
padding: 18px 20px 12px;
}
nav#main .container ul li:hover .dropdown-menu {
top: 50px;
}
}
</style>
<script>
$(document).ready(function(){
$("nav#main").insertAfter("header");
});
</script>
以上是关于html 在月光主题下的标题下方移动导航的主要内容,如果未能解决你的问题,请参考以下文章
html 北园 - 月光导航
UIScrollView 在导航和状态栏下方移动
如何在我的导航栏中移动“导航栏品牌”下的“导航”元素
如何在不移动图像下方的背景图像上居中文本? HTML/CSS
css 移动导航文本下方的导航突出显示栏。
iOS - 通过动画将搜索栏从中心移动到导航栏下方(Swift)