Search code examples
htmlcsscentering

html middle text alignment


Hey guys I am making a directory on my site and want to make the text be in the very middle not center and at not at the top I want it to be in the very middle of the document

<center>
  <button href="#">Download!</button>
</center>


Solution

  • Give css style to your DOM

    .wrapper {
        display: table;
        margin: 0 auto;
    }
    
    .box {
      background-color: blue;
      color: white;
      text-align: center;
      vertical-align: middle;
      width: 100px;
      height: 100px;
      display: table-cell;
    }
    <div class="wrapper">
       <div class="box">
           Center
       </div>
    </div>