Some Common css attributes:
| width: 300px; | Defines width of a div. Change 300 to your width |
| color:red; | Changes font color, can also use hex codes if known |
| float:left; | Pushes content to left (or right) |
| font-family:arial; | Sets the font |
| font-size:12px; | Sets the font size |
| background-color:green; | Sets the background color for the div |
| border:thin solid; | Places a border around the div |
| padding-left:15px; | Places a margin inside the div (also -right -top -bottom) |
| margin-left:15px; | Places a margin outside the div (also -right -top -bottom) |