Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .grid-container { display: grid; grid-template-columns: auto auto auto auto; grid-gap: 10px; background-color: #666; padding: 10px; } .grid-container > div { background-color: #eee; text-align: center; padding: 20px 0; font-size: 30px; } .box { grid-row: span 2; } </style> </head> <body> <h2>Grid-row property example</h2> <div class="grid-container"> <div>1</div> <div>2</div> <div>3</div> <div class="box">4</div> <div>5</div> <div>6</div> <div>7</div> </div> </body> </html>