gpt4 book ai didi

html - 如何在导航栏中分隔列表的各个部分?

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

这是我尝试制作的简单注册页面。我需要帮助弄清楚如何在导航栏的左侧放置 home、about、help 并在导航栏的最右侧登录。我希望它们在同一个导航栏上,但我找不到任何关于如何将它们分开或将它们放在页面的不同两侧的信息。

我是 html 和 css 的新手,所以任何其他有助于提高我的第一个网页质量的技巧都将有助于和平 SO peeps。

<html>
<head>
<title> Sample Sign up App</title>
<script></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="sign up form css.css">
</head>
<body>

<nav class="nav navbar-left">
<div class="nav">
<ul class="nav nav-pills">
<li role="presentation"><a href="#">Home</a></li>
<li role="presentation"><a href="#">About</a></li>
<li role="presentation"><a href="#">Help</a></li>
<li role ="presentation"><a href="#">Sign in</a></li>
</ul>
</div>
</nav>




<div class ="container">
<div class = "jumbotron">
<h2 id="jumbo-welcome"> Sign up to Sample App today!</h2>
<br>
<form>
<div class="form-group">
<label for="exampleInputEmail1">Email address</label>
<input type="email" class="form-control" id="exampleInputEmail1" placeholder="Enter email">
</div>
<div class="form-group">
<label for="exampleInputFile">Username</label>
<input type="text" class="form-control" id="exampleInputFile" placeholder="Username">
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
</div>
<br>
<button type="submit" class="btn btn-default" id = "submit-button">Sign up</button>
</form>
</div>
</div>

</body>
</html>

页面的 CSS

nav {
margin: auto;
width: 1980px;
height:45px;
.border;
.shadow;
}
.nav ul {
list-style: none;
background-color: #444;
text-align: center;
padding: 0;
margin: 0;
}
.nav li {
font-family: 'Oswald', sans-serif;
font-size: 1.2em;
line-height: 32px;
height: auto;
border-bottom: 1px solid #888;
}

.nav a {
text-decoration: none;
color: #fff;
display: block;
}

.nav2 li{
font-family: 'Oswald', sans-serif;
font-size: 1.2em;
line-height: 32px;
height: auto;
border-bottom: 1px solid #888;
}

.jumbotron{
display:block;
position:fixed;
width:40%;
height:66%;
top: 20%;
margin-left:20%;
margin-right:auto;
}
.form-group{
display:block;
margin-left: 15%;
margin-right:15%;
}
.jumbotron #submit-button{
display:block;
margin-left:40%;
margin-right:35%;
}
#jumbo-welcome{
text-align:center;
}

body {
line-height: 1;
background:#F2F2F2;
background-image: url("http://tech-rx.com/wp-content/uploads/2014/05/background.jpg");
}

最佳答案

只需将此 css 添加到您的 css 代码中

.nav.nav-pills li:last-child{float:right} 

jsfiddle

关于html - 如何在导航栏中分隔列表的各个部分?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28249016/

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