一般給圖片或者div設(shè)置寬高
1.給圖片設(shè)置寬度
width:30px
<img src="timg.jpg" alt="" width="300px;">
2.給圖片設(shè)置高度
height:30px
<img src="timg.jpg" alt="" height="300px;">
3.給div設(shè)置寬度
width:30px
<div style="width:30px"></div>
4.給div設(shè)置高度
height:30px
<div style="height:30px"></div>
5.給div設(shè)置背景色
background-color: 顏色
<div style="background-color: red"></div>