<!doctype html>
<head><meta charset="UTF-8"> <link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<div class="cont">
<div class="style">
<h2 class="cont">專注於IT教學和範例</h2>
<ul>
<li>HTML</li>
<li>SASS</li>
<li>LESS</li>
</ul>
</div>
</div>
</body>
</html>
.style { display: inline-block; background-color: black; color: white; } .cont { &:extend(.style); } .nav { &:extend(.style); }
lessc style.less style.css
.style, .cont, .nav { display: inline-block; background-color: black; color: white; }