mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 08:00:45 +00:00
19 lines
No EOL
376 B
HTML
19 lines
No EOL
376 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.grid-container {
|
|
display: grid;
|
|
background-color: lightsalmon;
|
|
}
|
|
|
|
.grid-item {
|
|
background-color: lightblue;
|
|
}
|
|
</style>
|
|
|
|
<div class="grid-container" style="
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
">
|
|
<div class="grid-item">1</div>
|
|
<div class="grid-item">2</div>
|
|
<div class="grid-item">3</div>
|
|
</div> |