ladybird/Tests/LibWeb/Layout/input/inside-list-item-content-offset.html
Oliver Medhurst 60fd406903 LibWeb: Fix inside list style overriding content offset
Previously, if a horizontal margin was set on a list-item and
it was list-style-position: inside, it would effectively remove
that margin.
2025-03-27 23:10:09 +00:00

10 lines
137 B
HTML

<!DOCTYPE html>
<style>
span {
display: list-item;
list-style-position: inside;
margin: 200px;
}
</style>
<span></span>