gpt4 book ai didi

html - 半透明导航栏中右侧的菜单和左侧的 Logo

转载 作者:行者123 更新时间:2023-11-28 05:53:02 24 4
gpt4 key购买 nike

我需要一个在背景图像上半透明的导航栏。

Logo 在左侧,菜单在右侧,列表项之间的间距应该相等。类似于 -

https://getbootstrap.com/examples/cover/

http://bootsnipp.com/snippets/featured/full-screen-background-cover-page

我试着给 float:right到我的<ul> menulist 的元素,它会向右移动。

HTML

<body>
<nav>
<ul style="float:right;">
<li style="display:inline;"><a href= "#">item1</a></li>
<li style="display:inline;"><a href= "#">item2</a></li>
<li style="display:inline;"><a href= "#">item3</a></li>
<li style="display:inline;"><a href= "#">item4</a></li>
</ul>
</nav>
</body>

CSS

body {
background-image:url("giphy.gif");
background-repeat: no-repeat;
background-size: cover;
overflow-x:hidden;
}

nav {
height:60px;
width:100%;
overflow-y:hidden;
overflow-x:hidden;
z-index:1;
background-color: transparent;
}

最佳答案

使用 Bootstrap css,你可以这样做

<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Your LOGO here.</a>
</div>
<ul class="nav navbar-nav" style="float:right">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Page 1</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
</ul>
</div>
</nav>
</body>

希望这对您有所帮助!

关于html - 半透明导航栏中右侧的菜单和左侧的 Logo ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37221999/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com