このcssスクリプトでヘッダーの4つのリンクのみを選択する方法がわからないようです。それは私のウェブページ上のすべての私のリンクを緑にします。どうすればよいですか?試し1.ul{ css here}
てみて、 1.a:link,1.a:visited; etc. And then on
class = '1'`を追加しましたが、それでもすべてのリンクがヘッダーリンクと同じになります。
<style>
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a.a:link,a.a:visited
{
display:block;
width:120px;
font-weight:bold;
color:#FFFFFF;
background-color:#98bf21;
text-align:center;
padding:4px;
text-decoration:none;
text-transform:uppercase;
}
a.a:hover,a:active
{
background-color:#7A991A;
}
</style>
</head>
<body>
<ul class"a">
<li><a class='a' href="#home">Home</a></li>
<li><a class='a' href="#news">News</a></li>
<li><a class='a' href="#contact">Contact</a></li>
<li><a class='a' href="#about">About</a></li>
</ul>