CSS: Difference between revisions

No edit summary
No edit summary
Line 4: Line 4:
|notes=Add CSS rules into your pages.
|notes=Add CSS rules into your pages.
|tests=See schedule colors on the [[Rates]] page.
|tests=See schedule colors on the [[Rates]] page.
|examples=The [[Rates]] page uses custom table layout and coloring. Without the CSS extension, this would be much harder to do.
|examples=<source lang="css">
@media (min-width: 55em)
{
.main
{
float: left;
width: 65%;
margin-right: 5%;
margin-bottom: 1em;
}
 
.aside
{
float: left;
width: 30%;
margin-bottom: 1em;
}
}
</source>
}}
}}
Cascading Style Sheets is one of the primary technologies used in the web.  CSS provides the style/appearance aspect of your HTML.
Cascading Style Sheets is one of the primary technologies used in the web.  CSS provides the style/appearance aspect of your HTML.