亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS? ?? ??

?? ?? ??

CSS ??? ? ?? ?? ??, ? ???? ?? ??? ???? ?????.

selector {
    declaration1; 
    declaration2;
    ... 
    declarationN;
}

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

selector {property: value

?:

h1{
   color:red;
   font-size:14px;
}

??? 2? ??? ?? ????? ???? ?????. ? ?? ?? h1 ?? ??? ??? ??? ????? ???? ?? ??? 14??? ?????.

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

QQ截圖20161011103552.png

??: ?? 1???? ? ?? ???? ???? ???.

p{font-family:"sans serif"}

?:

?? ??? ??? ??? ???? ???? index.html? MyCss.css?? ? ?? ??? ?????.

? ??? ?? ?? ??? ?????. ?? (??? ?? ??? ?????) : index.html

<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <!--引外部資源 MyCss.css-->
        <link rel="stylesheet" href="MyCss.css" type="text/css">
    </head>
    <body>
        <h1>
            PHP中文網(wǎng)
        </h1>
    </body>
</html>

MyCss.css

h1{
    color: red;font-size: 50px;
}

h1 ?? ?? ??? ??? ????? ???? ?? ??? 50??? ?????.

Ctrl+s? ? ??? ???? index.html? ???? ?? ??? ?????.

QQ截圖20161203142306.png

???? ??
||
<!doctype html> <html> <head> <meta charset="UTF-8"> <title></title> <!--引外部資源 MyCss.css--> <link rel="stylesheet" href="MyCss.css" type="text/css"> </head> <body> <h1> PHP中文網(wǎng) </h1> </body> </html>