Answers for "text field with only bottom border"

CSS
3

input text field with only bottom border

input {
  outline: 0;
  border-width: 0 0 2px;
  border-color: blue
}
input:focus {
  border-color: green
}
Posted by: Guest on March-21-2021
1

border bottom under text only

li {
	a {
		    width: auto;
			display: block;
			height: auto;
            &:hover {
            	border-bottom: 3px solid red;
            }
    }
}
Posted by: Guest on April-01-2021

Code answers related to "text field with only bottom border"

Browse Popular Code Answers by Language