Ali Naeimi
Ali Naeimi

Reputation: 622

How to change input border-color

input

When I click on the input to create a blue border.

what i do to make not this border?

input{border:0px; border-bottom:1px solid black;}
</head>
<body>
<input type="text">

Upvotes: 0

Views: 91

Answers (1)

Jonan
Jonan

Reputation: 2536

add this:

input:focus{
    outline: 0;
}

Upvotes: 2

Related Questions