css - HTML text rendered backwards... but only partially (1., 2., etc.) -


when text inside of tag rendered preceding number, number sent of string, , punctuation rendered backwards.

html:

<a href="#">1. step one</a>  

renders as:

 step 1 .1 

this might weird try , imagine, have included link screenshot:

html, css, & rendered result: http://imgur.com/oofd2tj

i'm @ bit of loss possibly cause this. theory there css property being inherited elsewhere. have been removing chunks of css in effort find guilty party, far no luck. renders 100% on other sections of website use different style sheets. not original author of style sheets, has been difficult pin-point possible source.

i appreciate if has seen similar , might able point me in direction of css properties possibly cause this, or if it's else entirely.

thank @tomalak, @briansol , @the_lotus helping me track 1 down.

there css property being inherited causing text render way. upon viewing inherited computed styles, saw:

direction: rtl; 

the correct property setting be:

direction: ltr; 

thanks again help!


Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Magento/PHP - Get phones on all members in a customer group -

session - Logging Out Using PHP -