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

CSS ?? ??

Html? ??? ????? CSS?? ?? ?? ????. ?, /*comment ?*/?? ?????(Html??? <!--comment ?--> ??).

CSS? ??? ? ? ?? ??? ? ??? ????.
1. ???(?? ???)
IE?? CSS ??? ???? ?? ???? ??? ? ????.
css ??:

html>body p { 
/* declarations */ 
}

2. "?????"(*)
? ?? ????? IE ??????? ??? ? ????(?? ??????? ???)
css ??:

* html p { 
/* declarations */ 
}

3. "????"()
IE/Win? ????? ???? IE/Mac? ???? "????" ??? ??? ? ????.
css ??:

/* \*/ 
* html p { 
declarations 
} 
/* */


???? ??
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>CSS注釋代碼</title> <style type="text/css"> p{ font-size:12px; /*設(shè)置文字字號(hào)為12px*/ color:red; /*設(shè)置文字顏色為紅色*/ } </style> </head> <body> <p>PHP中文網(wǎng)</p> </body> </html>