标签:less嵌套
#header{ h1{ font-size:26px; font-weight:bold; } .menu{ width:200px; height:200px; ul>li{ list-style:none; } } }
#header表示一个ID h1{ font-size:26px; font-weight:bold; }表示#header下的h1元素 .menu{ width:200px; height:200px; ul>li{ list-style:none; } }表示#header下的class="menu"的元素 依次类推
#header h1 { font-size: 26px; font-weight: bold; } #header .menu { width: 200px; height: 200px; } #header .menu ul > li { list-style: none; }
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>less3</title> <link rel="stylesheet" href="example3.css"> <style> #header{ width: 500px; height: 400px; border: 1px solid #ccc; } </style> </head> <body> <div id="header"> <h1>h1</h1> <div class="menu"> <ul> <li>...</li> </ul> </div> </div> </body> </html>
本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1900684
标签:less嵌套
原文地址:http://suyanzhu.blog.51cto.com/8050189/1900684