mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-27 18:40:00 +00:00
12 lines
No EOL
316 B
HTML
12 lines
No EOL
316 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(min-content, 1fr)); /* Invalid CSS value */
|
|
}
|
|
.item {
|
|
background-color: magenta;
|
|
border: 2px solid cyan;
|
|
height: 100px;
|
|
}
|
|
</style><div class="grid"><div class="item"></div><div class="item"></div></div> |