It appears that this issue is not specific to any browser and generally affects styling in various webkit/gecko/mozilla styles.
For instance, when I create a website mockup and implement a style like:
element.class {
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border: 1px solid #800000;
}
or
element:last-child {
....
}
When I open the file by double-clicking on it, the style displays as expected. However, when I apply the style to a live site hosted on IIS7, it seems to be ignored. I've checked the IIS configuration of the site but couldn't find a reason for this issue.
I would greatly appreciate any help with resolving this problem.
Thank you!