HTML中关于边框(border)的使⽤
同时设置上下左右边框:
border: 宽度样式颜⾊; 其中颜⾊可以省略(默认⿊⾊),样式不能省略
分别设置上右下左边框(1)
border-top: 宽度样式颜⾊;(顶部)
borderboxborder-right:宽度样式颜⾊ ;(右边)
border-bottom:宽度样式颜⾊ ;(下边)
border-left: 宽度样式颜⾊;(左边)
分别设置上右下左边框(2),如果省略左则和对边(右)格式相同,如果省略下则和对边(上)格式相同,如果省略右,下,左则和上格式相同,
border-width:上右下左;
border-style: 上右下左;
border-color: 上右下左;
分别设置上右下左边框(3)
border-top-width:2px ;
border-top-style: solid;
border-bottom-color:blue ;
关于样式:solid(实线),dotted(虚线)
1<!DOCTYPE html>
2<html>
3<head>
4<meta charset="utf-8"/>
5<title></title>
6<style type="text/css">
7 .box1{
8 width: 200px;
9 height: 100px;
10 border: 3px solid red;
11 }
12 .box2{
13 width: 200px;
14 height: 100px;
15 border-top: 5px solid red;
16 border-right: 5px solid red;
17 border-bottom:5px solid red ;
18 border-left: 5px solid red;
19 }
20 .box3{
21 width: 200px;
22 height: 100px;
23 border-width: 1px 2px 3px 4px;
24 border-style: solid dotted double solid;
25 border-color: antiquewhite aqua blueviolet chartreuse;
26 }
27</style>
28</head>
29<body>
30<div class="box1">边框测试1</div>
31<div class="box2">边框测试2</div>
32<div class="box3">边框测试3</div>
33</body>
34</html>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论