diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-11-02 20:55:29 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-11-02 20:57:05 -0700 |
commit | 642d603666521157d386e2a87bfdcca11d479b87 (patch) | |
tree | 2f2fef655397cfce54049cfa0c20c02a95a888e6 /test/command | |
parent | 52826881262532db9b0c9ce70f097d4ae844a39b (diff) | |
download | pandoc-642d603666521157d386e2a87bfdcca11d479b87.tar.gz |
Improved support for columns in HTML.
* Move as much as possible to the CSS in the template.
* Ensure that all the HTML-based templates (including epub)
contain the CSS for columns.
* Columns default to 50% width unless they are given a width
attribute.
Closes #4028.
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 8a8b05889..d14f1217f 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="width:40%;min-width:40%;vertical-align:top;"> +<div class="column" style="width:40%;"> <ul> <li>a</li> <li>b</li> </ul> -</div><div class="column" style="width:40%;min-width:40%;vertical-align:top;"> +</div><div class="column" style="width:40%;"> <ul> <li>c</li> <li>d</li> </ul> -</div><div class="column" style="width:10%;min-width:10%;vertical-align:top;"> +</div><div class="column" style="width:10%;"> <p>ok</p> </div> </div> |