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%;
}
}
}
}
网友评论