边框

来源:互联网 发布:js 数组转换成字符串 编辑:程序博客网 时间:2024/05/16 02:13

<title>无标题文档</title>
<style>
 #div1{
  width:200px;
  height:200px;
 
  border-bottom: 30px solid #C03;/*下边框*/
  border-top: 30px solid #F06;/*上边框*/
  border-left: 30px solid #0C3;
  border-right: 30px solid #FF3;
 
 
  /*边框 边框宽度 虚实 线          颜色
                 solid 实
       dashed虚
       dotted 虚实之间
     
       */
 }
</style>
</head>

<body>
<div id="div1"></div>
</body>
</html>

0 0
原创粉丝点击