61,126
社区成员
发帖
与我相关
我的任务
分享
[/quote]哥,前面有个小点[/quote]
好的😄感谢感谢
[/quote]哥,前面有个小点

<html>
<head>
<title>导航条练习</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
}
.nav {
list-style: none;
width: 1000px;
margin: 50px auto;
display: flex;
justify-content: space-between;
}
.item {
background-color: PowderBlue;
text-align: center;
padding: 5px;
width: 25%;
}
.item:hover {
background-color: rgb(190, 226, 89);
}
</style>
</head>
<body>
<ul class="nav">
<li class="item"><a href=#>首页</a></li>
<li class="item"><a href=#>我们</a></li>
<li class="item"><a href=#>刷新</a></li>
<li class="item"><a href=#>联系</a></li>
</ul>
</body>
<html>
[/quote]这是什么鬼。。。
全局取消样式,直接星号,不要带点[/quote]
啊,是吗,去掉点也可以,我看的那个视频里带点了,2016年的了,可能比较老了,这是新的吗