blob: dc71ab1b2425282f27967955b2705965d5e6b132 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<style>
table {
border: none;
background-color: green;
}
</style>
<table>
<tr>
<td>
<table style="width: 100%; border: none; background-color: red">
<tr>
<td>Pellentesque</td>
<td>
Duis rutrum nibh vestibulum finibus luctus. Sed ac gravida urna. Phasellus at est ut augue interdum condimentum. Nunc scelerisque, ligula a feugiat aliquet, est enim pulvinar nunc, at feugiat velit quam vel leo.
</td>
</tr>
</table>
</td>
</tr>
</table>
|