summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-tables/table-cell-overflow-explicit-height-ref.html
blob: cb64b1f6ce305abc491d946d1388b75709371047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<style>
td {
  border: 2px solid cyan;
}
.tall {
  height: 300px;
  background: blue;
  border: 2px solid black;
}
</style>
<table border>
  <td>
    <div class="tall"></div>
    Can you see this text?
  </td>
</table>