side by side tables
side by side tables
I'd like to have two tables side by side on a page rather than one above another. My tables get wrapped in a div by DataTables. I tried the following styling but it didn't seem to work.
[code]
.dataTables_wrapper {
display: inline;
}
[/code]
Any suggestions?
[code]
.dataTables_wrapper {
display: inline;
}
[/code]
Any suggestions?
This discussion has been closed.
Replies
anyone knows?
thanks!!
float: left;
width: 50%;
}
perhaps?
Allan
I also tried
display: inline
and
position: relative
and neither of those did the trick either.
[code]
.dataTables_wrapper {
float: left;
width: 50%;
clear: none
}
[/code]
Allan