Issue
This is just an example. I wanted the border of input to be rounded when it is clicked. But it did not happen.
.username {
border-radius: 0%;
}
.username :focus{
border-radius: 30%;
}
<input class="username" type="text" placeholder="Username or Email">
Solution
Get rid of the space between username and focus. .username:focus{}
the pseudo may be :active
actually.
.username:active {
color: red;
}
Answered By - zero298 Answer Checked By - Katrina (PHPFixing Volunteer)
0 Comments:
Post a Comment
Note: Only a member of this blog may post a comment.