wordpress - text-align justify bug on ie internet explorer and android -
i have bad justify effect on internet explorer , android wordpress content : lines got big spaces between words , tiny space between last 2 words of line
it works fine on other browsers ie chrome/firefox/safari.
platform : wordpress 3.5 + visual composer plugin
someone got idea ?
here content : http://www.arkama.fr/offres/sap/assistance-technique/
it visible on line •la recherche et l’identification de
<ul style="text-align: justify;"> <li style="text-align: justify;">la bonne <strong>qualification</strong> du besoin client ;</li> </ul> <ul style="text-align: justify;"> <li style="text-align: justify;">la <strong>recherche</strong> et <strong>l’identification</strong> de ressources disponibles et adaptées ;</li> </ul> <ul style="text-align: justify;"> <li style="text-align: justify;">la <strong>validation du profil</strong> et des compétences de ce dernier <strong>par des entretiens techniques, de personnalité</strong> et <strong>d’anglais</strong> ; </li> </ul>
some hidden hex characters in source code cause issue. in ie non-breaking-space-characters not stretched in justified text.
the developer tools in chrome reveal html code these characters generate:
a hex editor (hxd in case) lifts lid on hidden characters in source code (00
, 20
ok, a0
renders
, causes problems in case):
you try copy/paste code using text editor notepad++ rid of these characters. using dreamweaver, has has built-in-feature show hidden characters (view > code view options > hidden characters), worked fine in ie after deleting these characters.
Comments
Post a Comment