css3二

css3图片相关

圆角图片

html

1
<img src="paris.jpg" alt="Paris" width="400" height="300">

css

1
2
3
img {
border-radius: 8px;
}

圆形图片

html

1
<img src="paris.jpg" alt="Paris" width="400" height="400">

css

1
2
3
img {
border-radius: 50%;
}

缩略图

使用 border 属性来创建缩略图
html

1
<img src="paris.jpg" alt="Paris" width="400" height="300">

css

1
2
3
4
5
img {
border: 1px solid #ddd;
border-radius: 4px;
padding: 5px;
}

响应式图片

html

1
<img src="paris.jpg" alt="Paris" width="400" height="300">

css

1
2
3
4
img {
max-width: 100%;
height: auto;s
}