css去掉边框

https://zhidao.baidu.com/question/540248850.html

CSS去掉div的边框可以去掉css的border属性,或者覆盖border属性为none来实现。

1、如图,这是一个带边框的div测是页面。

css去掉边框_第1张图片

2、第一个div的边框是这行css实现的效果

border: 5px solid black;

3、第二个div没有设置边框样式

css去掉边框_第2张图片

4、第三个div的css设置了边框样式,但被内联样式覆盖为none,因此也能不显示边框。

css去掉边框_第3张图片

代码如下

div{

width:200px;

height:120px;

margin-bottom:10px;

background-color:yellow;

}

.box1, .box3{

border: 5px solid black;

}

你可能感兴趣的:(css去掉边框)