CSS盒子模型中边框属于盒子边缘,边框里边属于盒子内部,出了边框都是盒子的外部。CSS盒子模型边框的宽度、颜色和样式设置
边框宽度
/*边框的宽度*/
border-width:3px;
/*上边框的宽度*/
border-top-width:3px;
/*右边框的宽度*/
border-right-width:3px;
/*下边框的宽度*/
border-bottom-width:3px;
/*左边框的宽度*/
border-left-width :3px;
边框颜色
/*边框的颜色*/
border-color: #eee;
/*上边框的颜色*/
border-top-color: #eee;
/*右边框的颜色*/
border-right-color: #eee;
/*下边框的颜色*/
border-bottom-color: #eee;
/*左边框的颜色*/
border-left-color: #eee;
边框样式
/*边框的样式*/
border-style: solid;
/*上边框的样式*/
border-top-style: solid;
/*右边框的样式*/
border-right-style: solid;
/*下边框的样式*/
border-bottom-style: solid;
/*左边框的样式*/
border-left-style: solid;
原文出处:http://www.dongblog.com/notes/40.html
来源:博客网 转载请注明出处!