3 Easy ways to ALIGN Content HORIZONTALLY & VERTICALLY CENTER Using CSS properties .
Here's a quick summary :
1. Align Content in center using
Display : "flex" ;
align-items : " center";
justify-content : " center ";
2. Align Content in center using
display : "grid";
place-items : "center";
3. Align Content in center using
position : " absolute";
left : "50%" ;
top : "50%" ;
transform : translate(-50% , -50%);
Subscribe @Pranjultutorials for more tips and tricks.
#shorts Comment "#Pranjultutorials" if you read this 🙂🙂.