iOS Web View with Blurry Text -
i have web-view blurry text in ios 7. there many posts solutions, none of them seem work in case. best solution i've found far apply -webkit-transform: translatez(0);
blurry elements, seen here. doing causes -webkit-overflow-scrolling: touch;
become inoperable. advice appreciated.
update: here css associated scrolling wrapper , elements containing blurry text
#scrolling_element { position: relative; height: 100%; width: 100%; overflow: hidden; -webkit-overflow-scrolling: touch; overflow: auto !important; } .elements_w_blurry_text { position: relative; border: 1px solid #000; background-image: url("../path/to/img.png"); background-repeat: repeat; -webkit-transform: translatez(0);/* or other suggested code*/ }
try adding css:
-webkit-text-size-adjust:none;
Comments
Post a Comment