Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Word Wrapping Across Spans Reply To: Word Wrapping Across Spans

#199972
Shikkediel
Participant

Without seeing any code, I’d do a vertical translate :

span {
position: relative;
top: 50%;
-webkit-transform: translate(-50%);
transform: translate(-50%);
}

And makes the buttons high enough for the text to wrap. As a final resort there’s always JavaScript.