一:引入style的屬性結(jié)構(gòu):
<img src="xxx" alt="" width="300px"
style="xxxxxx"
二:字體樣式(新加標(biāo)簽)
字體顏色挺举、字體大小、粗體辨萍、下劃線棋恼、文字(標(biāo)題)居中、陰影锈玉、行高爪飘、字體
<span style="color:xxx;
font-size: 20px;
font-weight: bold;
text-decoration: underline;
text-align:center;
text-shadow: 9px 4px 20px black;
line-height: 1.5;
font-family: arial;"
></span>
三:樣式和內(nèi)容分離
用標(biāo)簽統(tǒng)一設(shè)置代替每個(gè)元素后面的屬性的語法
<style>
h1 {
color:xxx;font-size:30px;
text-decoration: underline;
}
四、將元素分類命名
類選擇器
class="note"
class="xxx命名"
.note{
color: xxx;
}
.xxx命名{
color: xxx;
}
【代碼截圖】