aboutsummaryrefslogtreecommitdiff
path: root/test/html/render/table-td-width-percent-img.html
blob: 2368cf7c82c0b93d8ca843f087f4049b5eecbeba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
  <body>
    <table>
      <tr>
        <td width="128" style="background: lightblue">
          The next cell is 50%
        </td>
        <td width="50%" style="background: lightgreen">
          <div>
            <img src="pic.png">
          </div>
        </td>
      </tr>
    </table>
  </body>
</html>