How can you center an element horizontally in CSS?
234
16-Oct-2024
Updated on 16-Oct-2024
Ashutosh Kumar Verma
16-Oct-2024Horizontal an Element-
Use
margin: 0 auto;
on a block-level element with a defined width, or usedisplay: flex; justify-content: center;
in a flex container.