Praise from...

Decision Management Solutions
Frank did a great job moving my company site to a new Joomla template. He really went the extra mile, helping debug obscure problems and making sure the site was up and ready and looking good on time. I look forward to working with Frank again.

James Taylor
Founder and CEO
Decision Management Solutions

Simple CSS anatomy PDF Print E-mail
Tips & Tricks
A CSS rule is a block of code that formats a markup element (HTML tag) on a web page. The rule's construction starts with a selector, corresponding to a markup element, followed by one or more style declarations sandwiched between curly braces – { }. The style's declaration contains two parts, a property and its value. The property and value are separated by a colon and terminated by a semi-colon.
body {
font-family: Arial, sans-serif;
}
h1
#header
.button
 
<< Start < Prev 1 2 3 4 Next > End >>

Page 1 of 4