Posted by Neredbojias on 10/31/12 11:48
To further the education of mankind, jenngra@gmail.com vouchsafed:
> Hi & Good evening - can someone please show me how to do this:
>
> <body id=page_one style=margin:100>
>
> PAGE CONTENT
>
> </body>
>
>
>
>
> <script> ..... I want to reset the <body> margin from 100 to 50 ....
>
> How can this be done?
You don't need to id the body element (-and probably shouldn't):
document.body.style.margin="50px";
Also, with css styles, units must be included:
<body style="margin:100px;">
--
Neredbojias
Infinity has its limits.
Navigation:
[Reply to this message]
|