Answers for "div class container center"

CSS
1

center a class css

.center{
	display: flex;
	justify-content: center;
}
Posted by: Guest on October-14-2021
0

how to center anything inside your container

display: grid;
    place-items: center;
    height: 100vh;
Posted by: Guest on September-06-2020
1

css center div

.my-div{
  width: 80%;
  margin: 10px auto;
  /*
    margin-left and right right has 'auto' value
    meaning that the browser will automatically calculate the remaining space
    and give it to the margin.
    From the example. 20% remained from 80%
    so that our div will have 
    margin-right: 10%
    margin-left: 10%
    and it will be centered.
  */
}
Posted by: Guest on June-12-2021

Browse Popular Code Answers by Language