You can view my site here - http://patiss-themes.com/planetary/ and as you can see on chrome and other browsers, also IE 9, it has transparent background (for content) and rounded corners, but on IE7 and IE8 after including html5.js (you can view in page source), it doesn't change anything, could someone help me with this?
Asked
Active
Viewed 667 times
-3
-
Can you be more specific: how exactly does the page break in IE7 and IE8? – jsalonen Jun 16 '12 at 14:23
-
Hello,It doesn't break, it just doesn't display the transparency and rounded corners for the content. – Pienskabe Jun 16 '12 at 14:36
1 Answers
1
html5.js
will only enable styling of the new elements, such as <article>
, <section>
, ...
It will not enable CSS3 effects which weren't implemented in those browsers.

Zeta
- 103,620
- 13
- 194
- 236
-
Hello, Oh thanks! how can I easily activate rounded corners and opacity? – Pienskabe Jun 16 '12 at 14:37
-
@Pienskabe: for adding rounded corners, checkout the answer at: http://stackoverflow.com/questions/2310833/what-is-the-best-way-to-create-standards-based-cross-browser-compatible-rounded – jsalonen Jun 16 '12 at 14:41
-
@Pienskabe: You could use conditional comments and `filter: alpha(opacity=
)` for opacity (see https://developer.mozilla.org/en/CSS/opacity#Cross_Browser_compatible_Live_Example). – Zeta Jun 16 '12 at 14:42