Is there a way to remove the extra line at the end of a list in a table cell? I am using the WRAP plugin to create the list.
For example, in the following table, there is an extra line after each list in the third column. How to get rid of it?
WHO label | Covid variant | First detected |
---|---|---|
Alpha | B.1.1.7 |
|
Beta | B.1.351 |
|
Gamma | P.1 |
|
Delta | B.1.617.2 |
|
FWIW, I am currently using
$ cat /etc/dokuwiki/userstyle.css /* To move the list up * * Ref: * https://forum.dokuwiki.org/d/9231-solved-possible-to-avoid-newline-above-list * https://forum.dokuwiki.org/d/15563-suppressing-blank-line-when-starting-a-list/3 */ .page p + ul { margin-top: -1.4em; }
Add the following to /etc/dokuwiki/userstyle.css
div.plugin_wrap ul { margin-bottom: 0px; }
Thanks to mboehn on the irc channel who helped me with the solution.