/ Published in: HTML
Expand |
Embed | Plain Text
<style type="text/css"> .column { in this class you can add height, width, text characteristics anything you want to be universal meaning apply to more then one div layer, remember the "column" class can be changed to whatever you want. } .one { this can be the CSS for a more specific column, for instance you can add a specific position that only applies to this div layer and not the other "columns" } .two { this can be the code for a mose specific column, for instance you can add a specific position that only applies to this div layer and not the other "columns" } </style> <div class="column one"> Contents of column one, notice the space between "column" and "one" this applies the CSS of both divs to this one. </div> <div class="column two"> Contents of column one, notice the space between "column" and "two" this applies the CSS of both divs to this one </div>
You need to login to post a comment.
