Selecting form element

Can we change the color appeared whenever your are selecting an element on form?

Here’s my codepen. https://codepen.io/zhouxiang19910319/pen/xzeVro?editors=1100

I want to customize the color showed whenever you are selecting something. For example this:

it is supposed to be blank… could you see the light blue selection color there? thats what I wanna customize…

You should look for input, textarea, etc border-color on :focus state

Since you already have a form-control focus selector, you could simply use the border property and specify a width, border style, and color.

1 Like

Thanks, I did it.

.form-control:focus{
  box-shadow: none;
  border: 1px solid #23B6C7;
}
1 Like

yeah… I dont really like the default box-shadow

Yeah you could take it out by also selecting the outline and styling it

1 Like