Click to See Complete Forum and Search --> : [RESOLVED] Basic CSS question


bldstr
11-13-2006, 04:20 AM
I was wondering what the running order for the following is:

padding: 1px 0px 1px 0px;

Which is left, right, top and bottom?

abz
11-13-2006, 04:31 AM
clockwise from the top...so top, right, bottom, left

:)

abz
11-13-2006, 04:33 AM
oh, and in case you dont know, you can use:
padding:15px 10px;

to make top and bottom 15px, and left and right 10px

bldstr
11-13-2006, 04:51 AM
Thank you!