四種CSS樣式表的引入方式
阿新 • • 發佈:2019-01-26
程式碼:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>CSS樣式表</title> <link href="ha.css" rel="stylesheet" type="text/css" <style type="text/css"> p{color:green} @import "de.css" </style> </head> <body> <p style="color:red">你不知道的事</p> </body> </html>
知識點總結:
1.內聯樣式(一對一修飾)
2.內部樣式(對body一種型別修飾)
3.引入外部樣式檔案(匯入一個寫好的CSS樣式檔案 href="檔名.CSS",其他屬性為固定屬性)
4.匯入外部樣式檔案(直接在<head>內輸入import “樣式檔案”即可)
5.四種CSS樣式表的優先順序順序比較