|
|
 |
Re: FN-FORUM: Advice and help please
date posted 15th January 2005 22:56
At 23:28 on Saturday, 15 Jan 2005, David wrote:
>
> Hi Andy;
>
> This is what I've done so far:
>
> padding:'padding-top'0px 'padding-right'2px 'padding-bottom'0px
> 'padding-left'2px;
> margin:'margin-top'12px 'margin-right'15px 'margin-bottom'
> margin:'margin-top'0px 'margin-right'0px
> 'margin-bottom'0px'margin-left'0px;
> padding:'padding-top'0px 'padding-right'0px 'padding-bottom'0px
> 'padding-left'0px;
> }
where did you get this from?
it's not CSS.
margin: 'margin-top'?????
you need to do this:
margin-top: 12px;
margin-right: 15px;
margin-bottom: 0;
etc.
or use css shorthand, like this:
margin: 10px 10px 5px 4px;
(the values are like a clock - top right bottom left. )
where are you learning css from?
;o)
|
 |
|