Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an <input type="search"/> element (no other HTML).

Here's the CSS:

input[type=search] {
    border: 1px solid #000;
    padding: 4px 12px;
    border-radius: 8px;
}

In Firefox 7 it looks great:

Rounded corners on input element in Firefox 7

However, in Chrome 15 the rounded corners are cut off:

enter image description here

View jsFiddle

Any way I can fix this?

Thanks in advance!

share|improve this question
FWIW, it works fine in Chrome 15 on Mac. – Benjie Nov 1 '11 at 8:22
@BenjieGillam That's odd! I think I'm going to end up using a wrapper <div> and styling it instead. – Web_Designer Nov 1 '11 at 15:40

3 Answers

up vote 13 down vote accepted

You just need to add -webkit-appearance: none to fix it.

share|improve this answer

Try with -webkit-appearance: textfield;

share|improve this answer

instead of

border-radius: 8px;

please use mozilla and webkit specific tags like this:

input[type=search] {
    border: 1px solid #000;
    padding: 4px 12px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
}
share|improve this answer
This still doesn't work: jsfiddle.net/Ys9pw/9 ...Google Chrome supports border-radius with and without the vendor prefix. – Web_Designer Nov 1 '11 at 15:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.