css属性

css属性
<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;
         200px;
        /*
            背景
         */
        background: url("img/logo.jpg") no-repeat center;
    }
</style>
<p>传智播客</p>
<div>
    黑马程序员

</div>
原文地址:https://www.cnblogs.com/hk18181358129/p/13276931.html