CreationsGuidesTutorialsTravelLogin
CSS Basics
Remember these are what go in style brackets {}. Also make sure you do not forget the semicolon at the end of each (like shown below).

Width

1
width: 100%;

Height

1
height: 100%;
Height and width can be in percent form like the examples or in pixels.

Margin

1
margin: 3px;

Padding

1
padding: 3px;

Border

1
border: 1px solid #666;
Format: pixels (how big the border is) type (solid, dotted, dashed, double) color

Border Style

1
border-style:solid;

Border Width

1
border-width:1px;

Border Width Alternative

1
border-width:medium;

Background

1
background: #666666;

Font

1
font: bold 14px Georgia, sans-serif;
Format: width (normal, bold, italic) pixels (how big the font should be) type (the font family)

Font Color

1
color: #009900;

Type of Font

1
font-family: Georgia, sans-serif;

Font Width

1
font-width: bold;

Links

1
text-decoration:none;
The above code can have the following: none(default for almost everything except for links), underline (default for links), line-through, blink (Note:The 'blink' value is not supported in IE, Chrome, or Safari.), overline

Style from With-In

Empty Style or Normal

1
<h2 style="">Text here.</h2>

Text here.


H2 Styles

1
<h2 style="color: #009900;">Text here.</h2>

Text here.