Answers for "css center block horizontally"

CSS
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
1

css center horizontally

text-align: center; /*also works for images or anything inside the object (I think)*/
Posted by: Guest on July-12-2021
3

how to center a div

margin:auto
Posted by: Guest on August-13-2020

Code answers related to "css center block horizontally"

Browse Popular Code Answers by Language