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; grid-row-gap: 15%; grid-column-gap: 3%; background-color: grey; padding: 40px; } .grid-container > div { background-color: white; text-align: center; padding: 25px; font-size: 20px; } </style> </head> <body> <div class="grid-container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> </div> </body> </html>