Jump to content
  • 0

центрирование повернутого текста


SnowCatcher
 Share

Question

добрый день! делаю выплывающее боковое меню. поворот его заголовка с помощью css делается так

.boxRotateLeft{
-webkit-transform: rotate(270deg); /* Saf3.1+, Chrome */
-moz-transform: rotate(270deg); /* FF3.5+ */
-ms-transform: rotate(270deg); /* IE9 */
-o-transform: rotate(270deg); /* Opera 10.5 */
transform: rotate(270deg);
zoom: 1;
display:block;
}

вопрос: как отцентрировать этот текст по-вертикали? дело в том, что для разных языков высота будет разная. вариант с картинками мне не подходит

вот еще сама разметка


<div id="hide" style="float:left;">
<img src="img/hide.png">
<span class="boxRotateLeft">hide</span>
</div>

Edited by SnowCatcher
Link to comment
Share on other sites

Recommended Posts

  • 0

вот на что хватило меня

огромное спасибо. поправил только

.boxRotateLeft{
-webkit-transform-origin:30px 30px;
-moz-transform-origin: 30px 30px;
-o-transform-origin:30px 30px;
-ms-transform-origin:30px 30px;
transform-origin:30px 30px;
width:20px;
}

вёрстка не едет, всё идеально!

там если подготовить заранее картинку(повернуть ее), то rotate для img можно опустить вовсе

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy