Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix wrapping CSS in Check Answers table
[PR alphagov#1169](alphagov#1169) added in some CSS: - ``word-break: break-word;``, followed by - ``word-break: break-all;`` ``word-break: break-word;`` is the favoured behaviour, but isn't fully supported. ``word-break: break-all;`` is the fallback behaviour, it sometimes results in unfavourable wrapping mid-word. The order for this CSS needs to be changed to, otherwise the less favourable `break-all` takes precedence. ```CSS word-break: break-all; word-break: break-word; ```
- Loading branch information