Center Div Inside Div Code Example


Example 1: center a div in css

.container {   display: flex;   justify-content: center;   align-items: center; }

Example 2: center div horizontally and vertically

.parent {   position: relative; } .child {     position: absolute;     left: 50%;     top: 50%;     transform: translate(-50%, -50%); }

Example 3: css align center

//HTML <div class="parent"> 	<span>Hello World</span> </div>  //CSS .parent {   display: flex;   justify-content: center;   align-items: center; }

Example 4: css center

// example 1  div { display: grid; place-items: center; }  // example 3 div{ display:flex; align-items:center; }  // example 3 div { width: 100%; margin: 0 auto; }

Example 5: css main container align center

margin: 0 auto;

Example 6: align a div in center of another div

#container {     width: 640px; /*can be in percentage also.*/     height: auto;     margin: 0 auto;     padding: 10px;     position: relative; }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?