美文网首页
样式结构化

样式结构化

作者: 智多牛 | 来源:发表于2016-12-15 14:34 被阅读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%;
                }
                
            }
        }
    }

    相关文章

      网友评论

          本文标题:样式结构化

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