Answers for "how to center a component in html"

CSS
4

how to center an image element inside a block in css

img { display:block;
      margin-left: auto;
      margin-right:auto;
      }
Posted by: Guest on July-08-2020
0

how to center a div

.container {
  ...
  display: flex;
  justify-content: center;
}
Posted by: Guest on February-02-2021

Code answers related to "how to center a component in html"

Browse Popular Code Answers by Language