first-child用來設定對象(Selector1)的第一個子物件(Selector2)的樣式表屬性。比如一個列表第一行的樣式可以和其他行有所不同,但目前IE尚不支援此偽類。下面給出用ASP類比實現的方法.
今看到經典裡在討論這個問題,Realazy的做法是採用了javascript,zbm2001z的做法是用了expression,我想如果這個列表是從資料庫讀出來的話,用程式寫可能更容易。我不是什麼程式員,只會一點最簡單的asp,如寫的不好, 還請多多指導諒解!
asp代碼以下是引用片段:
'資料庫連接代碼
response.write"<ulclass='fgList'>"
rs.movefirst
response.write"<liclass='firstchild'><atitle=''href='#'>"&rs("列表標題")&"</a></li>"
rs.movenext
dowhilenot(rs.eoforerr)
response.write"<li><atitle=''href='#'>"&rs("列表標題")&"</a></li>"
rs.moveNext
loop
response.write"</ul>"
response.write"<hr/>" CSS Code以下是引用片段:
ul.fgList{
list-style:none;
}
ul.fgLista{
color:#333333;
background:url(/img/arrow_l2.gif)no-repeat050%;
padding-left:1.5em;
line-height:2em;
text-decoration:none;
}
ul.fgLista:hover{
color:#999999;
text-decoration:underline;
background:inherit;
}
ul.fgListli.firstchilda{
color:#C00;
background:url(/img/arrow_l2_over.gif)no-repeat050%;
}
h3{
font-size:120%;
padding:2em1em.3em.3em;
}