mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
Before this change we would only account for the size of the list item itself rather than it's marker which if the marker was larger than it's associated list item could lead to markers overlapping
15 lines
163 B
HTML
15 lines
163 B
HTML
<!doctype html>
|
|
<style>
|
|
li::marker {
|
|
font-size: 30px;
|
|
}
|
|
</style>
|
|
<ol>
|
|
<li>1</li>
|
|
<li>2</li>
|
|
</ol>
|
|
<ul>
|
|
<li> </li>
|
|
<li> </li>
|
|
</ul>
|