25 lines
607 B
CSS
25 lines
607 B
CSS
/* --------------------------------------------------------------
|
|
|
|
css-classes.css
|
|
* Classes for CSS development
|
|
|
|
See the Readme file in this directory
|
|
for further instructions.
|
|
|
|
-------------------------------------------------------------- */
|
|
|
|
.left { float:left; }
|
|
.right { float:right; }
|
|
|
|
.hide { display:none; }
|
|
|
|
.reset-margin { margin:0; }
|
|
.reset-padding { padding:0; }
|
|
.reset { margin:0; padding:0; }
|
|
|
|
.align-justify { text-align:justify; }
|
|
.align-left { text-align:left; }
|
|
.align-center { text-align:center; }
|
|
.align-right { text-align:right; }
|
|
|