blob: 3b093643e46f6bb0853196477e26722527d71773 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!DOCTYPE html>
<style>
table {
border-collapse: separate;
}
#cell {
width: 200px;
height: 24px;
border: 1px solid green;
vertical-align: baseline;
}
#input {
display: block;
width: 100%;
height: 100%;
border: none;
}
</style>
Tests layout and painting of table cell after baseline and border changes.
<table>
<tr>
<td id="cell">
<input id="input" value="abc">
</td>
</tr>
</table>
|