css input border radius code example
Example 1: how to round input border
border-radius:px,%
Example 2: 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;
}