样式结构化

2016-12-15  本文已影响0人  智多牛

html代码

<html>
    <body>
        <div id="panel">
            <p id="title"></p>
            <div id="content"></div>
        </div>
    </body>
</html>

less代码

html
{
    margin : 0;
    padding: 0;
    
    body
    {
        #panel
        {
            width: 200px;
            height: 50px;
            
            #title
            {
                color: red;
                font-size: 24px;
            }
            
            #content
            {
                width: 50px;
                height: 50px;
                border-radius: 50%;
            }
            
        }
    }
}
上一篇 下一篇

猜你喜欢

热点阅读