外部樣式、內部樣式、內聯樣式
外部樣式
需要運用到多個頁面,可以使用<link>引入
<link rel="stylesheet" type="text/css" href="/html/a.css">
內部樣式
運用於單個頁面,可以使用style標籤引入,位於html頁面內
<style type="text/css">p1 {backgroundcolor:red}</style>
內聯樣式
運用於html的某個標籤,使用style直接寫在開始標籤內,可以使用css的任何屬性
<p style="backgroundcolor:re;margin-left: 20px">111</p>