heron
heron

Reputation: 3661

Vertically aligning 90 degree rotated text

What I want to do is, to vertically align collapsed blocks on give website:

http://maliyyemenecment.com/?language=en

I tried all possible ways, to align words with bottom side. I mean, constant margin from bottom side. The problem is, can't achieve any good result. Any suggestions?

enter image description here

Thx in advance

Upvotes: 1

Views: 1297

Answers (1)

Ana
Ana

Reputation: 37179

.kwicks.horizontal li .block .collapsed has a text-align:right; replace it with text-align: left; (as the "bottom" is actually the left side of the element) and set a text-indent (works for me when making this edit in developer tools)

.kwicks.horizontal li .block .collapsed {
  text-align: left;
  text-indent: 17px;
}

Upvotes: 3

Related Questions