html 使用CSS更改图像的大小,为其添加边框并更改其样式和边框半径
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 使用CSS更改图像的大小,为其添加边框并更改其样式和边框半径相关的知识,希望对你有一定的参考价值。
<style>
.rounded-border {
border-radius: 50px;
}
</style>
<img class='rounded-border'
src='https://bit.ly/fcc-kittens'/>
<style>
.smaller-image{
width:100;
}
</style>
<img src='https://bit.ly/fcc-kittens' class="smaller-image"/>
<img
src='https://bit.ly/fcc-kittens'
alt="A cute orange cat lying onits back"/>
<style>
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 25px;
}
</style>
<img class='smaller-image thick-green-border' src='https://bit.ly/fcc-kittens'/>
<style>
.thick-border {
border-width: 10px;
border-style: solid;
}
</style>
<img class='thick-border'
src='https://bit.ly/fcc-kittens'/>
以上是关于html 使用CSS更改图像的大小,为其添加边框并更改其样式和边框半径的主要内容,如果未能解决你的问题,请参考以下文章
使用CSS的图像内边框?
在图像周围添加透明边框
添加 CSS 边框更改 HTML5 网页中的定位
更改 UIView 边框的形状
在 webview 中快速加载 html 文件,更改图像大小、字体和文本大小
使用 SVG 过滤器向 SVG 图像元素添加边框 [重复]