diff options
| author | Albert Krewinkel <[email protected]> | 2022-08-21 11:30:21 +0200 |
|---|---|---|
| committer | Albert Krewinkel <[email protected]> | 2022-08-22 15:32:39 +0200 |
| commit | 16d134218b6ee545363573a6671297523dc6a6f7 (patch) | |
| tree | 92d6562c63625f48ebc9b692bdd673b3c3299448 /test/command | |
| parent | 08f1f4551cea2b1af660b35ce3ddf39dd4ed416c (diff) | |
HTML writer: revert to using `width` property for column widths
The default `flex` and `overflow-x` properties of a column are set to
`auto`. In combination, these changes allow to get good results when
using columns with or without explicit widths.
Diffstat (limited to 'test/command')
| -rw-r--r-- | test/command/1710.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/command/1710.md b/test/command/1710.md index e65f1be70..64d86cffe 100644 --- a/test/command/1710.md +++ b/test/command/1710.md @@ -19,17 +19,17 @@ ok <section id="slide-one" class="slide level1"> <h1>Slide one</h1> <div class="columns"> -<div class="column" style="flex:40%;"> +<div class="column" style="width:40%;"> <ul> <li>a</li> <li>b</li> </ul> -</div><div class="column" style="flex:40%;"> +</div><div class="column" style="width:40%;"> <ul> <li>c</li> <li>d</li> </ul> -</div><div class="column" style="flex:10%;"> +</div><div class="column" style="width:10%;"> <p>ok</p> </div> </div> |
