
Aug 7th, 2007, 17:17
|
|
Highly Reputable Member
|
|
Join Date: Jun 2007
Location: Canterbury
Age: 20
Posts: 726
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
Re: what are this stuff?
Not quite sur ewhat you mean but...
text-indent: 0; indents the text, can be +ve number to indent it right, or -ve ton indent left and can use ems to scale
text-decoration: none; text decoration can have various values such as underline, overline etc...and these underline or overline the text or whatever you set it as
font-weight: bold; erm...this makes the text bold! can set it as normal to make it normal
clear: both; places the current div below both divs on the right and left...someone might explain better
outline: none; outlines the element is like a second border
margin: 0 auto; adds margins to div, like page margins, as it is currently set it is aligning to center. You can use one number like 10px which will add 10px margin to each edge, or two numbers which will add the first to the top and bottom and the second to the left and right, or four which will add them in the order top right bottom left.
display: block; displays the current div as a blcok, has a bit of top and bottom padding and allows no html next to it unless a float is specified.
|