跟Howard學LESS之初見LESS

跟Howard學LESS之初見LESS,上代碼:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>跟Howard學LESS之初見LESS</title>
    <style type="text/css">
        .conten ul{
            list-style: none;
        }
        .conten li{
            height: 25px;
            line-height: 25px;
            padding-left: 15px;
            background: url("arr.jpg") no-repeat center left;
        }
        .conten li a{
            text-decoration: none;
            color: #535353;
            font-family: microsoft yahei, "黑體", Arial, Simsun, "Arial Unicode MS", Mingliu, Helvetica;
        }
        /*less的寫法如下*/
        .conten {
            ul{
                list-style: none;
            }
            li{
                height: 25px;
                line-height: 25px;
                padding-left: 15px;
                background: url("arr.jpg") no-repeat center left;
                a{
                    text-decoration: none;
                    color: #535353;
                    font-family: microsoft yahei, "黑體", Arial, Simsun, "Arial Unicode MS", Mingliu, Helvetica;
                }
            }
        }
    </style>
</head>
<body>
<div class="conten">
    <ul>
        <li><a href="http://www.quban18.com/shiwuquban/dasuanquban/">大蒜祛斑</a>這是測試文檔</li>
        <li><a href="http://www.quban18.com/zhongyaoquban/">中藥祛斑</a>這是測試文檔</li>
        <li><a href="http://www.quban18.com/shiwuquban/dasuanquban/">大蒜祛斑</a>這是測試文檔</li>
    </ul>
</div>
</body>
</html>

Less部份:

.conten {
ul{
list-style: none;
}
li{
height: 25px;
line-height: 25px;
padding-left: 15px;
background: url("arr.jpg") no-repeat center left;
a{
text-decoration: none;
color: #535353;
font-family: microsoft yahei, Arial, Simsun, "Arial Unicode MS", Mingliu, Helvetica;
}
}
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章