Answers for "centering div in css"

CSS
89

center a div in css

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}
Posted by: Guest on September-09-2020
1

how to make things center using css

// add to the parent element
.parent{
  	height:100vh;
	display:flex;
  	justify-content: center;
  	align-items: center;
}
or you can use 
// add to the parent element
.parent{
  	height:100vh;
	display:gird;
  	place-item:center;
}
Posted by: Guest on May-18-2021
1

center div css

.container {
  display: grid;
  place-items: center;
}
Posted by: Guest on June-01-2021
8

css center vertically

<style>
.container {
  height: 200px;
  position: relative;
  border: 3px solid green;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
</style>

<div class="container">
  <div class="center">
    <p>I am vertically and horizontally centered.</p>
  </div>
</div>
Posted by: Guest on April-01-2020
2

how to horizontal center a div in css

#inner {
  width: 50%;
  margin: 0 auto;
}
Posted by: Guest on June-18-2020
2

css center position

/**************** 1º method to center all elements ********************/
body {                   
  text-align: center;
}

/* If all of your elements have the property display equal to "inline", 
"block" or "inline-block", then you can use the text-align: center in
the <body> tag */

tag_name {
    display: inline; /* block or inline-block*/
}

/*...but if we have an element of type "block" with a width diferente
from the default (maximum width of the page), then this will no 
longer work!*/
  
tag_name {
    display: block;
  	width: 170px;
}


/**************** 2º method to center all elements ********************/
/* Another method, is to use the margins to center the element 
horizontally and/or vertically */

tag_name {
    display: block;
  	width: 100px;
  	margin: 0 auto 0 auto;  /* top, right, bottom, left */
}
Posted by: Guest on August-02-2020

Browse Popular Code Answers by Language