我想在CSS中選擇錨標籤。爲了在以下html文檔中的目的,我做了同樣的事情。如何使用CSS類選擇第一,第二或第三個html元素中的子元素?
我的html文件是在這裏:
</head>
<body>
<div class="first">
<center> <a href="http://www.google.com">The first link </a></center>
</div>
<div class="second">
<center> <a href="http://www.fb.com"> The second link </a></center>
</div>
<div class="third">
<center> <a href="http://www.stackoverflow.com"> The third link </a></center>
</div>
</body>
現在我要選擇全部標記。我試過這樣:
body a:first-child:hover//The first child
{
font-size:30px;
color:yellow;
}
body a+a:hover //the second child
{
font-size:40px;
color:red;
}
body a+a+a:hover //the third child
{
font-size:50px;
color:#fff;
}
但是我得到錯誤的結果我該怎麼辦?
你爲什麼不使用IDS? – FabioG
Sitenote:不要使用''
@Asenar我正在寫我自己的代碼:) – jahan