Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css input border radius focus

/* the outline is square on focus to change do this*/
.my_input {
  border: 1px solid blue;
  border-radius:3px;
}
.my_input:focus {
  outline: none;
}
 
PREVIOUS NEXT
Tagged: #css #input #border #radius #focus
ADD COMMENT
Topic
Name
1+4 =