Intermediate CSS Techniques
Tuesday, June 3rd, 2008Continuing from where we left off, lets take a look at some of the awesome things CSS can really do.
The Basics
Let’s start with the most common and basic CSS attributes, width and height. Once you assign a class to an element you are free to style it any way you want. We will be using this code snipet and styling it as examples.
1 2 3 | <div class="test"> <p>Hello</p> </div> |