Strange special characters issue in left side ellipsis
问题 I have some file path, to which I am trying to show ellipsis on left side using the below code. .ellipsis:after { content:".........................."; background-color: white; color: transparent; position: relative; z-index: 2; } .ellipsis { direction: rtl; display: inline-block; width: 200px; white-space: nowrap; overflow: hidden; position: relative; border: 1px solid black; z-index: 3; } .ellipsis:before { content:"..."; background-color: white; position: absolute; left: 0; z-index: 1; }