Answers for "center middle element"

CSS
1

how to center an element in css

.container{
  display:bock;
  width:fit-content;
  margin:auto;
}
Posted by: Guest on September-23-2021
3

how to center a div element

/*ADD MARGIN auto to left and right*/
.box1{
    width:80%;
    margin:0 auto;
}
Posted by: Guest on August-27-2020

Browse Popular Code Answers by Language