$font-stack: Helvetica, sans-serif; $primary-color: #333; body { font: 100% $font-stack; color: $primary-color; }
$font-stack: Helvetica, sans-serif $primary-color: #333 body font: 100% $font-stack color: $primary-color
body { font: 100% Helvetica, sans-serif; color: #333; }
<html> <head> <title> Variable example of sass</title> <link rel="stylesheet" type="text/css" href="simple.css"/> </head> <body> <h1>Simple Sass Example</h1> <h3>Welcome to lidihuo</h3> <p>A solution of all technology.</p> </body> </html>
$font-stack: Helvetica, sans-serif; $primary-color: pink; body { font: 100% $font-stack; color: $primary-color; }
body { font: 100% Helvetica, sans-serif; color: pink; }