mirror of
https://github.com/servo/servo.git
synced 2025-06-27 18:43:40 +01:00
22 lines
400 B
HTML
22 lines
400 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Grid: Reference for grid-template-rows interpolation</title>
|
|
<style>
|
|
.grid {
|
|
display: grid;
|
|
width: 400px;
|
|
height: 400px;
|
|
grid-gap: 10px;
|
|
grid-template-rows: 60px 1fr;
|
|
}
|
|
span { border: 1px solid; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="grid">
|
|
<span>row1</span>
|
|
<span>row2</span>
|
|
</div>
|
|
</body>
|
|
</html>
|