File: IE80Fixes.css

package info (click to toggle)
cppreference-doc 20170409-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 259,872 kB
  • sloc: xml: 570,184; python: 1,923; php: 520; makefile: 168; sh: 25; cpp: 9; ansic: 9
file content (15 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * Fixes textarea scrolling bug (bug #19334). The bug only occurs when a
 * percentage width is given, so instead of width: 100%, use min-width: 100%;
 * max-width: 100%.  We also need to give a fixed width for the actual width
 * property for the hack to work, although the actual value (500px here) ends
 * up being ignored; min/max-width take precedence.
 *
 * More info: http://grantovich.net/posts/2009/06/that-weird-ie8-textarea-bug/
 */
#wpTextbox1 {
	height: 390px;
	width: 500px;
	min-width: 100%;
	max-width: 100%;
}