Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I horizontally center vertical rotated text?

Tags:

css

This is the issue I'm facing:

Issue

No matter what I try it won't align the smiley horizontally.

CodePen for reference: https://codepen.io/d1401/pen/eYmPgZP

.no-results {
  text-align: center;
}

#smiley {
  font-size: 12em;
  writing-mode: vertical-lr;
  margin: 30px auto;
}

#text {
  font-size: 1.6em;
}
<div class="no-results">
  <p id="smiley">:(</p>
  <p id="text">No matches found</p>
</div>

Please do note that the smiley has been rotated 90 degrees.

like image 896
KNY Avatar asked Nov 21 '25 21:11

KNY


1 Answers

You may consider a vertical-align hack using pseudo element:

.no-results {
  text-align: center;
}

#smiley {
  font-size: 12em;
  writing-mode: vertical-lr;
  margin: 30px auto;
}

#text {
  font-size: 1.6em;
}
/* This will do the magic */
p#smiley:before {
  content: "";
  vertical-align: sub;
}
<div class="no-results">
  <p id="smiley">:(</p>
  <p id="text">No matches found</p>
</div>
like image 115
Temani Afif Avatar answered Nov 23 '25 12:11

Temani Afif



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!