[heycam/webidl] [styling] #distinguishable-table tds want a min-width (#723)

In Chapter 2.5.6, there's a table detailing which types are distinguishable. It uses some clever CSS to make "diagonal" vertical headers. This depends on the columns being a particular width; namely, 30px.

In the CSS, the table cells are set to `width:30px` (in a `.csstransforms #distinguishable-table td` rule) to achieve this. This works most of the time, but if the browser width is small enough to start squishing the table, the cells will obligingly shrink so the table doesn't overflow, messing up the alignment of the column headers.

That 'width' should be accompanied by a `min-width: 30px`, to ensure that the table will overflow in narrow situations and not disrupt the alignment of the columns and their diagonal headers.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/723

Received on Thursday, 9 May 2019 17:33:45 UTC