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

?? CSS ???

?? CSS ???(?? ??????? ?)? ??? ?? ??? CSS ??? ???? ????. ? CSS ??? ??? ??? ??? ".css"?? <head> ; ??) ?? ??? ?? <link> ??? ???? CSS ??? ??? HTML ??? ?????.

<link href="base.css" rel="stylesheet" type="text/css" />

??:

1. ??? ??? main.css? ?? ?? ??? Named? ?????.

2. rel="stylesheet" type="text/css"? ??? ???? ??? ?? ?????.

3. <link> ?? ??? ????? <head> ?? ?? ?????.

body { line-height: 130pt}
H1,H2,H3,H4,H5,H6 {
color: red;
text-decoration: underline;
font-family: " 黑體 "
}
b {
font-style: italic;
color: #FF3333;
text-decoration: underline
}

<STYLE> ? ?? ??? ?????? ??? ?? ??? ??? ???? ?????.

???? ??
||
<!doctype html> <html> <head> <meta charset="UTF-8"> <title></title> <link href="mycss.css" type="text/css" rel="stylesheet"> </head> <body> <!--p 標簽中嵌套了一個 a 標簽,在下面的 css 引用過程中我們可以看到的.pclass a 即為 class 被用作派生選擇器--> <p class="pclass">這是一個 class 顯示效果<a href="hhtp://ipnx.cn">效果</a></p> <div class="divclass">hello div</div> </body> </html>