How to easily center anything in CSS ? #css #html Rami Dev Jan 22 ・1 min read You can easily center anything, with this 3 lines of CSS code: Discussion (2) Subscribe Image Upload image Templates Templates Editor guide Personal Moderator Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand Stephan Nijman • Jan 24 Dropdown menu Copy link Hide Or with two lines :p .center { display: grid; place-items: center; } Collapse Expand Rami Dev Author • Jan 24 Dropdown menu Copy link Hide Yeah Grid team 😉 Code of Conduct • Report abuse
Discussion (2)
Or with two lines :p
.center {
display: grid;
place-items: center;
}
Yeah Grid team 😉