Code review comment for lp:~bryce/launchpad/lp-586150-whiteboard-widening

Revision history for this message
Curtis Hovey (sinzui) wrote :

No, but ultimately your point is valid. max-width is for block elements, inline elements and table elements are ignored (display: inline and display:table respectively). In my defence, it was way past my bed time when I did that review; I should have waiting till morning when the caffeine had taken affect. We need to refine the rule so that we have the same semantics to provide comprable effect.

.wide * {
    max-width: 60em;
    margin: 1em 0;
    }
table.wide {
    max: 60em;
    margin: 1em 0;
    }

« Back to merge proposal