#{$name}
<html> <head> <title>插值 - www.tw511.com</title> <link rel="stylesheet" type="text/css" href="style.css" /> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css"> <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> <div class="container"> <h2>Example using Interpolation</h2> <p>SASS stands for Syntactically Awesome Stylesheet...</p> </div> </body> </html>
p:after { content: "I have #{8 + 2} books on SASS!"; }
sass --watch C:\Ruby22-x64\style.scss:style.css
p:after { content: "I have 10 books on SASS!"; }