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

Popular posts from this blog

android - Get AccessToken using signpost OAuth without opening a browser (Two legged Oauth) -

org.mockito.exceptions.misusing.InvalidUseOfMatchersException: mockito -

google shop client API returns 400 bad request error while adding an item -