mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 15:28:11 +00:00

This change fixes division by zero in case flex container has "justify-content: space-between" and only single item.
6 lines
No EOL
127 B
HTML
6 lines
No EOL
127 B
HTML
<style>
|
|
.container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
</style><div class="container"><div>A</div></div> |