国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

CSS ????? ?

?? ????? ?? ?? ??? ?????.

?? ????? ?:

?? ??? ?? ???? ???? ??? ?? ?? ?? ??? ?????. ??? ??? ????. :

<ul>
    <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li>
    <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li>
    <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li>
    <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li>
</ul>

??? ??? ?? ??? ?????.

QQ截圖20161011170510.png

??? ????? ?? ?? ???? ??? ??? ?? ?? ?? ?? ????. ???? ?? ?? ???? ?? ?? ?? ??? ?????. ??? ?? CSS? ????? ?????.

?? ?? ?? ?? ???? ???

ul{    list-style: none;
}

???? ??? ????(?? ??? ????) ???? ??? ?? ???? ?????.

a:link,a:visited{   text-decoration: none;   background-color: lightgray;    display: block;
}

????? ?? ??? ???? ?????. ???? ? ?? ??? ?????.

a:active,a:hover{    background-color: cadetblue;
}

??? ??????.

QQ截圖20161011170631.png

?? ?? ??? ??? ? ?? ??? ?? ???? ?????. bar. CSS ??? ???? ???.

?? ?? ?? ??? ???? ???.

display: block;

??? ?? ??? ???? ???. li ??:

li{    display: inline;
}

?? ???? ?? ?? ??? ??? ? ????

QQ截圖20161011170924.png

??? ??? ?? ??? ?? ??, ??? ??? ? ????. ?? ?. ???? ??? ???? ?????.


???? ??
||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link rel="stylesheet" type="text/css" href="style.css" /> <title>Title</title> </head> <body> <ul> <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li> <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li> <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li> <li><a href="http://m.miracleart.cn">php中文網(wǎng) link</a></li> </ul> </body> </html>