0
How to put two tables side by side in html?
2 odpowiedzi
+ 3
You can do it by setting styles with CSS.
There are many ways, one example could be to put both tables inside a div element, and make them float:
div table {
float: left;
}
Check CSS tab here:
https://code.sololearn.com/WNK4usLocX61/?ref=app
0
Or if you want to have it more or less equaly spaced put it in two div containers with a width of 50%