review:Attribute selectors challenge task2 (input area color)
Challenge Task 2 of 3
Next, create a new attribute selector that targets input
elements with a type
attribute value of password
. Then, set the color to #ccc
.
/* Complete the challenge by writing CSS below */
img[title="avatar"]{
border-radius:50%;
}
input[type="password"]{
color:#ccc;
}
Comments
Post a Comment