I'm facing an issue where I have a floated div
with a margin of 200px
from the right side, and I am trying to place a table
on that empty space.
Below is the CSS for the div
:
#testo {
border-right: solid black 1px;
background-color: white;
margin-right: 200px;
text-align: justify;
padding: 7px;
float: left;
font-size: 14px;
}
Unfortunately, the table
ends up going under it instead. Any insight into why this might be happening?