mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-04 07:36:50 +00:00
This change fixes division by zero in case flex container has "justify-content: space-between" and only single item.
6 lines
127 B
HTML
6 lines
127 B
HTML
<style>
|
|
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
</style><div class="container"><div>A</div></div> |