Topic: More CSS positioning |
|
---|---|
Author | Thread |
Nervous Wreck (II) Inmate From: I'm over here, now |
posted 01-27-2007 09:18
Alright you CSS gurus I'm kinda slow but I am learning this stuff. code: margin: 0 auto; method. Found that I can't use code: position:whatever; ... so I deleted it from my style sheet. code: margin: 50 auto; .... doesn't work code: margin top: 50; ....doesn't work |
Maniac (V) Mad Librarian From: the space between us |
posted 01-27-2007 10:36
margin-top:50px; would be the correct code... |
Lunatic (VI) Inmate From: under the bed |
posted 01-27-2007 18:42
first: when specifying a number other than 0, you need to specify your unit of measure - 50 what? |
Paranoid (IV) Inmate From: Florida |
posted 01-27-2007 21:01
Horse's mouth: http://w3.org/TR/CSS21/box.html#propdef-margin |
Bipolar (III) Inmate From: I'm over here, now |
posted 01-27-2007 23:05
Thanks so much guys, I guess I had the right idea.... just fell short on the implementation. |