PDA

View Full Version : centering with css!!!


cloudseven
03-28-2003, 04:19 AM
hi there, I would like to know how to center my page both vertically and horizontally with css? if you read this thread, you'll know what I'm talking about. Thanks!!!


http://www.codingforums.com/showthread.php?s=&threadid=17043

cg9com
03-28-2003, 05:54 AM
center the page vertically and horizontally?
can you explain? you can center a block level element such as table with the CSS property margin.
<style type="text/css">
table.selector {
margin:0px auto;
}
</style>
<table class="selector"></table>

cloudseven
03-28-2003, 06:00 AM
I found a solution already...thanks.