html - Make text overflow to the left side with CSS -
i have main titles have following css properties:
text-align:right; padding-right:30px; border-right: 3px solid #c7342d; float:left; width:300px;
font of titles large , there long words go on 300px
in width. causes words overflow, overflow right padding
& border
area instead left.
is there way force text overflow left?
here several examples understand i'm after: (second image how should look)
try adding following css rule title,
direction: rtl;
this make right-to-left , invert overflow direction.
Comments
Post a Comment