Search code examples
cssanchortext-align

CSS anchor text-align its content center not working


Try to align the div in the center of the link, not working. still align left.

a {
  display: block;
  text-align: center;
  background: green;
}

div {
  width: 100px;
  background: red;
}
<a>
  <div>
    Hello World
  </div>
</a>


Solution

  • Set the margin to auto on the div and remove the text-align rule on the anchor:

    a {
      display: block;
      background: green;
    }
    
    div {
      width: 100px;
      background: red;
      margin: auto;
    }
    <a>
      <div>
        Hello World
      </div>
    </a>