<!DOCTYPE html> <html> <head> <style> .parent{ display:grid; width:300px; height:300px; grid-template-rows:100%; grid-template-columns:100%; background-color:rgba(230,230,230,1); } .child{ background-color:lightgreen; color:white; border:2px solid rgba(150,150,150,1); place-self: center; } </style> </head> <body> <div class="parent"> <p class="child">#First 1</p> </div> </body> </html>
Run
×
Share