I tried this in a .sass file:
h1,
h2,
h3
:font
:weight bold
:family Helvetica, Arial, sans-serif; color: #000
The result in the .css file was:
h3 {
font-weight: bold;
font-family: Helvetica, Arial, sans-serif; color: #000; }
h1 and h2 were not included ...
Do I need to repleat the attributes like this:
h1
:font
:weight bold
:family Helvetica, Arial, sans-serif; color: #000
h2
:font
:weight bold
:family Helvetica, Arial, sans-serif; color: #000
h3
:font
:weight bold
:family Helvetica, Arial, sans-serif; color: #000
I looked in:
http://haml.hamptoncatlin.com/docs/sass but did
not see a way to assign the same attributes to multiple selectors.
Todd