<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>占位符選擇器 - www.yiibai.com</title> <link rel="stylesheet" type="text/css" href="style.css" /> <link rel="stylesheet" > <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script> </head> <body> <h1>第一個標(biāo)題</h1> <p class="frst_para">It is a CSS pre-processor which helps to reduce repetition with CSS and save the time. </p> <h1>第二個標(biāo)題</h1> <p class="sec_para">It was initially designed by Hampton Catlin and developed by Natalie Weizenbaum in 2006.</p> </body> </html>
接下創(chuàng)建一個文件:style.scss.
.frst_para {
color: green;
}
.sec_para {
@extend .frst_para;
font-size:20px;
}
sass --watch C:\ruby\lib\sass\style.scss:style.css
.frst_para, .sec_para {
color: green;
}
.sec_para {
font-size: 20px;
}