Have you tried using the following:
direction: rtl;
For more information see
http://www.w3schools.com/cssref/pr_text_direction.asp
I had the same problem and solved it using two divs. The outer div does the clipping on the left and the inner div does the floating to the right.
.outer-div {
width:70%;
margin-left:auto;
margin-right:auto;
text-align:right;
overflow:hidden;
white-space: nowrap;
}
.inner-div {
float:right;
}
:
<div class="outer-div">
<div class="inner-div">
<p>A very long line that should be trimmed on the left</p>
</div>
</div>
You should be able to put any content inside the inner div and overflow it on the left.
easily done, <span>
the numbers and position the span absolute to the right inside an element with overflow hidden.
<div style="width: 65px; height: 20px;
overflow: hidden; position: relative; background: #66FF66;">
<span style="position: absolute; right: 0;">05451234567</span>
</div>
:)
rgrds jake
This worked like a charm:
<div style="direction: rtl;">
<span style="white-space: nowrap; direction: ltr; display: inline-block;">your short or long comment<span>
</div>
You can do float:right
and it will overflow to the left, but in my case I need to center the div if the window is larger than the element, but overflow to the left if the window is smaller. Any thoughts on that?
I tried playing around with direction:rtl
but that doesn't appear to change the overflow of block elements.
I think the only answer is to float it right, with a div to the right of it that's also floated right, then set the width of the div to the right to half the remaining window space with jquery.
Here is an way easier solution using flexbox. It also works on pseudo elements.
p {
display: flex;
justify-content: flex-end;
white-space: nowrap;
overflow: hidden;
font-size: 2em;
width: 120px;
background: yellow;
}
<p>156189789123</p>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With