我创建了带有指向其他页面的超链接的导航栏
CSS 代码:
a
{
display:block;
width:120px;
color:brown;
text-decoration:none;
text-align:center;
background-color:yellow;
padding:4px;
transition-property: background;
transition-duration: 1s;
}
但是,这现在会影响导航栏之外的其他链接。如何将导航栏中的链接与内容文本中的链接分开?