NickMalloy
Programmer
I have a page that looks like the following code. Is there a way to tell the page to put the border around the outside table, but not the inside table?
<div id="righttop">
<table>
stuff here
<table>
stuff here
</table>
stuff here
</table>
</div>
Here are my styles
#righttop {
float: left;
margin-left: 15px;
}
#righttop table {
border: 1px solid #D1D687;
}
<div id="righttop">
<table>
stuff here
<table>
stuff here
</table>
stuff here
</table>
</div>
Here are my styles
#righttop {
float: left;
margin-left: 15px;
}
#righttop table {
border: 1px solid #D1D687;
}