Currently, when I try to parse this CSS with following setting
new CSSReaderSettings()
.setCustomErrorHandler(null)
the parsing succeeds but the entire box
section is ignored because of *zoom
property
a:focus {
background-color: red;
}
.box {
*zoom: 1; /* Applied only in IE7 and below */
background-image: url("https://www.example.com/image3.png");
}
I don't see a way to configure the library to support old-style IE7 and below
CSS properties, would be very convenient if we can add support for those properties.
Thanks you!