OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <style> | |
3 input { display:table-cell; width:50px; height: 50px; margin:0; border:none; pad ding: 0; background:transparent; } | |
4 </style> | |
5 <p>crbug.com/515771: Form elements with a table cell display should not allow wh itespace between them. </p> | |
6 <p>There should only be green below.</p> | |
7 <div style="display:table;"> | |
8 <div style="display:table-column; background:green;"></div> | |
9 <div style="display:table-column; background:red;"></div> | |
10 <div style="display:table-column; background:salmon;"></div> | |
11 <div style="display:table-column; background:red;"></div> | |
12 <input> | |
13 <input> | |
14 <input> | |
15 <input> | |
16 </div> | |
OLD | NEW |