Day.12.30 Div+Css 开山篇

作者: 挂树上的骷髅怪 | 来源:发表于2016-12-30 22:20 被阅读7次
    <!DOCTYPE html>
    <html>
     <head>
     <meta  charset="utf-8">
      <title> div+css 开山篇 </title>
      <style type="text/css">
        .div1{
            width:300px;
            height:300px;
            background-color:silver;
            /*将文字居中*/
            text-align:center;
            /*将文字上下居中*/
            line-height:300px;
            font-size:30px;
            font-family:华文新魏;
            /*要控制div的位置,可以使用margin*/
            margin-left:300px;
            margin-top:30px;
        }
      </style>
     </head>
     <body>
        <div class="div1">
            十二月三十日,离职,晶茂科技
        </div>
     </body>
    </html>
    

    相关文章

      网友评论

        本文标题:Day.12.30 Div+Css 开山篇

        本文链接:https://www.haomeiwen.com/subject/ogfuvttx.html