Is there a way to prevent users from enlarging the browser display?
I built a site for a client that is appears fine at normal display but appears to break apart if you change the font size to Larger or Largest in IE7/8.
Is there a way to prevent users from changing the view?
In Webkit there is this option:
textarea {
resize: none;
}
Is there anything that would work 开发者_JS百科in IE?
thanks.
No, why would you? Your site should be as accessible as possible. What if I have poor eyesight and need to increase the font size to see your site?
精彩评论