table-cell-nowrap-with-fixed-width.html (560B)
1 <!DOCTYPE html> 2 <link rel="help" href="https://html.spec.whatwg.org/#tables-2"> 3 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=821915"> 4 <link rel="match" href="table-cell-nowrap-with-fixed-width-ref.html"> 5 <title>A td element with the nowrap attribute should unconditionally apply white-space:nowrap</title> 6 <style> 7 table { border-spacing: 0; } 8 td { width: 10px; padding: 0; } 9 div { display: inline-block; background: green; width: 50px; height: 100px; } 10 </style> 11 <table> 12 <td nowrap> 13 <div></div><div></div> 14 </td> 15 </table>