Skip to content

Commit ab6fe16

Browse files
committed
issue #11116 Graphical glitch with lists and text spilling over on a new line.
It looks like an interaction between the `<li>` tag, the `<code>` tag and the css setting `display: inline-block;`. Setting the attribbute `vertical-alignment: top;` or the `<code>` parts solves the issue.
1 parent e268db6 commit ab6fe16

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

templates/html/doxygen.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1811,6 +1811,10 @@ tt, code, kbd, samp
18111811
{
18121812
display: inline-block;
18131813
}
1814+
tt, code, kbd, samp code
1815+
{
1816+
vertical-align: top;
1817+
}
18141818
/* @end */
18151819

18161820
u {

0 commit comments

Comments
 (0)