Answers for "display block center css"

CSS
90

center a div in css

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

how to center an ing with block display

img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    }
Posted by: Guest on September-10-2020
4

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