April 6, 201115 yr hi is it possible to do rounded corner in spry tab?? Yes. CSS3 or Images, either way will work. Might require some serious CSS skills to get it working across browsers, but it's doable.
April 7, 201115 yr If the spry tab is a div then you can use this css to round the corners: -moz-border-radius: 5px; (for firefox) border-radius: 5px; (for ie8, ie9, chrome) -webkit-border-radius: 10px; (for safari)
April 8, 201115 yr Actually, you're best off doing it this way around: -moz-border-radius: 5px; /* for older versions of Firefox) */ -webkit-border-radius: 5px; /* for older versions of Safari and Chrome */ border-radius: 5px; /* Newer browsers */ Each browser will go down the list until the last property it recognises, so as more versions of more browsers support border-radius they will use the valid CSS rule as opposed to the vendor-specific prefixes. Edited April 8, 201115 yr by Renaissance-Design
Create an account or sign in to comment