Can anyone help me with a specific code snippet to achieve rounded corners for this page ? Currently, I am using the PIE.htc file which only works when I declare position:relative; throughout the layout, causing disruptions. Is there a code workaround that does not require the position attribute in that template?
I have not specified moz & webkit prefixes, however, the rounded corner effect is visible on browsers like Safari and Chrome. My current code snippet includes:
border-radius:5px;
behavior: url("PIE.htc");
position: relative;
This code combination allows the effect to work on most browsers except IE, even with PIE.htc implemented and without the position attribute. Could it be due to differences in how Mozilla and Webkit handle border box properties?