How to to center multiple tables horizontally?
How to to center multiple tables horizontally?
judita
Posts: 2Questions: 2Answers: 0
I have two tables side by side but they are not palced at the center of the page.
(...)
position: relative;
float: left;
display: inline;
clear: none;
width: 45%;
padding: 20px;
*zoom: 1;
zoom: 1;
}
(..)
This discussion has been closed.
Answers
Try
display: inline-block
, but really we would need a link to a test case showing the issue.Allan