0

How do you vertically center an a tag's text?

http://codepen.io/mildrenben/pen/uypnI

Super basic example:

HTML:

<div>
  <a>W</a>
</div>

CSS:

* {
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}


div {
  float: left;
  height: 20%;
  width: 100%;
  background: pink;
}

a {
  float: left;
  height: 100%;
  width: 20%;
  background: papayawhip;
  text-align: center;
}
mildrenben
  • 3,365
  • 4
  • 19
  • 36

0 Answers0