Add Borders Around your Elements - zilongxuan001/LearnFreecode GitHub Wiki
CSS的图片边框属性有style
,color
,width
, CSS样式如下:
<style>
.thin-red-border {
border-color: red;
border-width: 5px;
border-style: solid;
}
</style>
.thin-red-border
表明这是个class,class名称为thin-red-border
border-color
说明边框颜色属性
red
说明边框颜色为红色
border-width
说明边框宽度属性
5px
说明边框宽度为5 pixels
border-style
说明边框样式属性
solid
说明边框样式为solid
在HTML中引用如下
<img class="thin-red-border">
另外,一个元素可以插入多个class属性,样式如下
<img class="class1 class2">
Basic CSS: Add Borders Around Your Elements | Learn freeCodeCamp
2018-9-29 17:03:35