I’m trying to add a textarea with rounded corners to my site.
I’m using this css:
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
Right now this shows correctly in chrome, however when the textarea gets the focus, an orange border is added to the textarea and such border doesn’t have rounded corners.
Any idea on how to fix this?
Thanks
To remove the default
outline, and then emulate that outline with one that’s more…style-compliant:JS Fiddle demo.