Answers for "how do i style an input outline"

CSS
2

input outline focus

input:focus, textarea:focus {
    background-color: #FFFF66;
    border: 1px solid #F47E58;
}
Posted by: Guest on October-16-2020
2

add border to input css

border: none;
border-bottom: 1px solid blue;
Posted by: Guest on March-11-2020

Code answers related to "how do i style an input outline"

Browse Popular Code Answers by Language