IE80Fixes.css 531 B

123456789101112131415
  1. /**
  2. * Fixes textarea scrolling bug (bug #19334). The bug only occurs when a
  3. * percentage width is given, so instead of width: 100%, use min-width: 100%;
  4. * max-width: 100%. We also need to give a fixed width for the actual width
  5. * property for the hack to work, although the actual value (500px here) ends
  6. * up being ignored; min/max-width take precedence.
  7. *
  8. * More info: http://grantovich.net/posts/2009/06/that-weird-ie8-textarea-bug/
  9. */
  10. #wpTextbox1 {
  11. height: 390px;
  12. width: 500px;
  13. min-width: 100%;
  14. max-width: 100%;
  15. }