like:
<body>
<div></div>
<div></div>
</body>
How can I make all the DIVs at the center of the webpage?
I mean in the browser.
like:
<body>
<div></div>
<div></div>
</body>
How can I make all the DIVs at the center of the webpage?
I mean in the browser.
HTML:
<div class="center"></div>
CSS:
div.center { margin: 0 auto; }
Of course, if you have other things outside of those divs, they might interfere.
Either create a CSS class or put in a style in your DIV element
margin:0px auto;
Depends on the exact page, but either text-align: center
or margin: 0 auto
will probably be what you need. See CSS Centering for general information about centering and CSS Selectors so you know how to target the proper elements.