Reputation: 191
input {
height: 60px;
margin: 30px;
border-radius: 20px;
}
<input type="text">
I wouldn't like to display that ugly blue border(in Chrome) when focusing the input, but I don't know how to achive that.
Upvotes: 2
Views: 1101
Reputation: 2736
Change your CSS to
input{
height:60px;
margin:30px;
border-radius: 20px;
outline:none;
}
Updated fiddle http://jsfiddle.net/y8jpvh50/
Upvotes: 4