Answer the question
In order to leave comments, you need to log in
How to fix a bug with wrong text position?
How do I fix the text wrapping bug so that the book title "Shutter Island" wraps the same way as the previous two titles?
<div class="left_menu_book">
<div class="left_menu_content_book_icon">
<a href="#">
<img src="Book_icon_64.png">
</a>
</div>
<div class="left_menu_content_book_title">
Остров проклятых
</div>
</div>
.left_menu_content {
position: relative;
top: 75px;
height: calc(100% - 55px);
width: 100%;
}
.left_menu_content_book_icon {
text-align: -webkit-left;
}
.left_menu_content_book_title {
text-align: -webkit-right;
margin-top: -64px;
display: none;
font-family: 'Trebuchet MS';
font-size: 25px;
transition: .3s;
}
Answer the question
In order to leave comments, you need to log in
Like, obviously
.left_menu_content_book_title {
padding: 0 0 0 64px;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question