Day.01.18 css的边框

<!DOCTYPE html>
<html>
 <head>
 <meta  charset="utf-8">
  <title> 边框 </title>
    <style type="text/css">
        #div-box{
            width:300px;
            height:200px;
            border:3px dotted red;
        }
    </style>
 </head>
 <body>
    <div id="div-box">
        腊月二十一的中午
    </div>
 </body>
</html>

总结:
1.border的三个属性值:宽度 样式 颜色
2.border-top只有上边有边框,border-bottom只有下面有边框,一次类推

    原文作者:挂树上的骷髅怪
    原文地址: https://www.jianshu.com/p/c4bac4e834dd
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞