mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 17:33:12 +00:00
Previously, if a horizontal margin was set on a list-item and it was list-style-position: inside, it would effectively remove that margin.
10 lines
137 B
HTML
10 lines
137 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
span {
|
|
display: list-item;
|
|
list-style-position: inside;
|
|
|
|
margin: 200px;
|
|
}
|
|
</style>
|
|
<span></span>
|