css属性1

<html lang="en"> <head> <meta charset="UTF-8"> <title>css属性</title>
<style>
    p{
        color: #FF0000;
        font-size: 30px;
        text-align: center;
        line-height: 200px;
        /*
            border 边框
         */
        border: 1px solid red;

    }
    div{
        border: 1px solid red;
        /*
            尺寸
         */
        height: 200px;
        width: 200px;
        /*
            背景
         */
        background: url("img/logo.jpg") no-repeat center;
    }
</style>
<p>传智播客</p>
<div>
    黑马程序员

</div>
posted @ 2020-07-09 23:31  神树一世  阅读(81)  评论(0编辑  收藏  举报