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

?? ???

??? ??? ?? HTML ??? ???? ?????.

class ? id ???? ??? ??? ??? ???? HTML ??? ???? ??? ? ????.

??: IE7 ? IE8? !DOCTYPE? ??? ???? ?? ???? ?????. IE6 ????? ?? ??? ???? ????.


?? ???

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

[title]{color:red;}

?? ? ? ???

?? ???? title="php"? ?? ??? ???? ?????.

[title=php]{border:5px solid blue;}


?? ?? ? ??? - ?? ? ??

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

[title~=hello] { color:red; }

?? ???? ??? ?? ??? lang ??? ???? ?? ??? ???? ?????. ????? ??? ?? ?? ?????:

[lang|=en] { color:red; }


?? ??? ??

?? ???? ?? ?????. ???? ??? ? ?? ?????. ?? ?? ID ??:

input[type="text"]{  
    width:150px;  
    display:block;  
    margin-bottom:10px; 
    background-color:yellow; 
    font-family: Verdana, Arial;
}
input[type="button"]{  
    width:120px;  
    margin-left:35px; 
    display:block;  
    font-family: Verdana, Arial;
}

QQ截圖20161012090827.png

???? ??
||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <style type="text/css"> [title] { color:red; } </style> </head> <body> <h1>可以應(yīng)用樣式:</h1> <h2 title="Hello world">Hello world</h2> <a title="php" href="http://php.cn">php中文網(wǎng)</a> <hr /> <h1>無(wú)法應(yīng)用樣式:</h1> <h2>Hello world</h2> <a href="http://php.cn">php中文網(wǎng)</a> </body> </html>