21 lines
382 B
CSS
21 lines
382 B
CSS
/* $Id$ */
|
|
|
|
/* IE7 renders legends in nested fieldsets without a width. */
|
|
fieldset legend {
|
|
height: 1%;
|
|
}
|
|
|
|
/* IE renders absolute positioned legend where fieldset content starts. */
|
|
fieldset .fieldset-legend {
|
|
left: 0;
|
|
top: 0;
|
|
}
|
|
|
|
/**
|
|
* Fixes an issue in IE6/IE7 where links in table headers and table row
|
|
* background colors do not appear.
|
|
*/
|
|
tr {
|
|
position: relative;
|
|
}
|