(3)右边框宽度(border-right)
语法:
border-right : border-width || border-style || border-color
(4)下边框宽度(border-bottom)
语法:
border-bottom : border-width || border-style || border-color
(5)左边框宽度(border-left)
语法:
border-right : border-width || border-style || border-color
(6)边框颜色(border-color)
语法:
border-color : color
要使用该属性,必须先设定对象的height或width属性,或者设定position属性为absolute。如果border-style设置为none,本属性将失去作用。
示例:
body { border-color: silver red }
body { border-color: silver red rgb(223, 94, 77) }
body { border-color: silver red rgb(223, 94, 77) black }
h4 { border-color: #ff0033; border-width: thick }
p { border-color: green; border-width: 3px }
p { border-color: #666699 #ff0033 #000000 #ffff99; border-width: 3px }
(7)边框样式(border-style)
语法:
border-style : none | hidden | dotted | dashed | solid | double | groove | ridge | outest
要使用该属性,必须先设定对象的height或width属性,或者设定position属性为absolute。如果border-style设置为none,本属性将失去作用。
案例
<html>
<head>
<meta charset="utf-8">
<title>border-style</title>
<style type="text/css">
div{
border-width: 6px;
border-color: #000000;
margin: 20px;
padding: 5px;
background-color: #FFFFCC;
}
</style>
</head><body>
<div style="border-style: dashed">The border-style of dashed.</div>
<div style="border-style: dotted">The border-style of dotted.</div>
<div style="border-style: double">The border-style of double.</div>
<div style="border-style: groove">The border-style of groove.</div>
<div style="border-style: inset">The border-style of inset.</div>
<div style="border-style: outset">The border-style of outset.</div>
<div style="border-style: ridge">The border-style of ridge.</div>
<div style="border-style: solid">The border-style of solid.</div>
</body>
</html>
2、外边距
外边距指的是元素与元素之间的距离,外边距设置属性:margin-top、margin-right、margin-bottom、margin-left,可分别设置,也可以用margin属性一次设置所有边距。
(1)上外边距(margin-top)
语法:
margin-top : length | auto
设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。
示例:
body { margin-top: 15%
(2)右外边距(margin-right)
语法:
margin-right : length | auto
设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。
示例:
body { margin-right: 15%
(3)下外边距(margin-bottom)
语法:
margin-bottom : length | auto
设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。
示例:
body { margin-right: 15%
(4)左边距(margin-left)
语法:
margin-left : length | auto
设置对象上外边距,外边距始终透明。内联元素要使用该属性,必须先设定元素的height或width属性,或者设定position为absolute。
示例:
body { margin-left: 15%
以上4项属性可以控制一个要素四周的边距,每一个边距都可以有不同的值。或者设置一个边距,然后让浏览器用默认设置设定其他几个边距也可以将边距应用于文字和其他元素。
示例:
h4 {
margin-top: 20px;
margin-bottom: 5px;
margin-left: 100px;
margin-right: 55px
}