导航条nav的样式: 高度30px,背景色为#09C。文字颜色为#fff,字号为20px,字体为微软雅黑,水平居中显示,字符间距2px。超链接文字无下划线,文字颜色为白色,只有鼠标悬停时文字颜色变为黄色
时间: 2024-02-11 13:04:51 浏览: 138
导航条背景图
好的,您需要的导航条样式代码如下:
```css
nav {
height: 30px;
background-color: #09C;
text-align: center;
font-size: 20px;
font-family: "微软雅黑";
letter-spacing: 2px;
}
nav a {
color: #fff;
text-decoration: none;
}
nav a:hover {
color: yellow;
}
```
您可以将以上代码添加至您的CSS文件中,并将导航条的HTML代码嵌入到您的网页中。
阅读全文