230720 HTML/CSS 学习笔记
1. img 不超过其容器的 CSS 方法设置
- 将img设为块级元素
- 最大宽度设为100%
img { display: block; max-width: 100%; }
2. div 浮动 与清除浮动
3. 子元素使用该语句可以占用其父亲元素整宽
.father .son { display: block; }
1. img 不超过其容器的 CSS 方法设置
img { display: block; max-width: 100%; }
2. div 浮动 与清除浮动
3. 子元素使用该语句可以占用其父亲元素整宽
.father .son { display: block; }