I've written this:
table.calendar-day
:background #cccccc
td
:font-size .75em
:text-align right
.center
:text-align center
To go against something like:
<table class="calendar-day">
<tr>
<td class="center">
this should be centered
</td>
</tr>
</table>
The CSS I'm seeing is:
table.calendar-day {
background: #cccccc; }
table.calendar-day td {
font-size: .75em;
text-align: right; }
table.calendar-day td .center {
text-align: center; }
And what I believe I need to see is:
table.calendar-day {
background: #cccccc; }
table.calendar-day td {
font-size: .75em;
text-align: right; }
table.calendar-day td.center { /* note closed up space between
td and .center */
text-align: center; }
Am I mistaken? Did I write the Sass wrong?
Thanks,
Steve
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Haml" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/haml?hl=en
-~----------~----~----~----~------~----~------~--~---