边框样式
- 有三个属性
border-width:边框宽度
border-style:边框风格
border-color:边框颜色
三个属性都使用时定义元素的边框.
- 如果对单个元素进行边框设定有元素整体设置和边框上下左右分别设置.
- 整体设置
div { 1px solid red; }
- 分别设置
div{
border-top:1px solid red;
border-bottom:1px dashed blue;
border-left:1px dashed yellow;
border-right:1px solid black;
}
- 对多个元素进行设置可参考群组选择器的使用.
选择器
- 想要隐藏某个位置边框,可设置边框宽度为0、none或0px.
border-top:0px;
或
border-top:0;
或
border-top:none;
网友评论