+ 2
Help me to change otline-style of input "Search"🙏
Now it is lightblue. How can i do purple? https://code.sololearn.com/Wt2ryp90Uvpo/?ref=app
1 Réponse
+ 2
.form-control:focus{
box-shadow:2px 2px 2px purple;
}
it targets other classes with form-control as well
this targets only the search box
.form-inline>.form-control:focus{
box-shadow:2px 2px 2px purple;
}