Having been experimenting with CSS3 in an Actinic layout I found it wasn't displaying in IE9 when pressing the "preview current page button".
A quick "Google" of the problem revealed that IE9 RC1 doesn't always display CSS3 if IE thinks the site is on your intranet and so defaults to compatibility view- this would apply to previewing Actinic files as well.
Just add this line:
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
inbetween the <head></head> tags. Now you can preview your CSS3.
Unexpected bonus is that also happens in the preview pane in Actinic IF you have IE9 RC1 installed (Sorry Vista/Win7 only guys).
Being an IE9 preview you don't get the full works but you do get Box shadow and Rounded corners.
Nice one!
A quick "Google" of the problem revealed that IE9 RC1 doesn't always display CSS3 if IE thinks the site is on your intranet and so defaults to compatibility view- this would apply to previewing Actinic files as well.
Just add this line:
<meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
inbetween the <head></head> tags. Now you can preview your CSS3.
Unexpected bonus is that also happens in the preview pane in Actinic IF you have IE9 RC1 installed (Sorry Vista/Win7 only guys).
Being an IE9 preview you don't get the full works but you do get Box shadow and Rounded corners.
Nice one!