Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Selectors Selectors - Beyond the Basics Attribute Selectors Challenge

I tried selectors other than img[target="avatar"] { border-radius: 50%; } But can't get anything to work

Out of all the selectors covered so far...

input[type="email"] { background: yellow; }

[class] { border: solid 1px #ccc; }

input[type="submit"] { background-color: green; }

a[target="_blank"] { color: tomato; }

The last one seems the most applicable, but it doesn't work. :-/

style.css
/* Complete the challenge by writing CSS below */

img[target="avatar"] {
  border-radius: 50%;
}
index.html
<!DOCTYPE html>
<html>
<head>
    <title>Selectors</title>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link href='http://fonts.googleapis.com/css?family=Nunito:400,300' rel='stylesheet' type='text/css'>
  <link rel="stylesheet" href="base.css">
  <link rel="stylesheet" href="style.css">
</head>
<body>
    <div id="container">
        <form class="form-contact">
        <img src="avatar.png" title="avatar" alt="">

          <label for="un">Username:</label> 
          <input type="text" id="un">

        <label for="pw">Password:</label>
        <input type="password" id="pw">

          <input type="submit" value="Sign up">
        </form>
    </div>
</body>
</html>

Oh, and the challenge is...

"Create an attribute selector that targets img elements with a title value of "avatar". Give those elements a border radius of 50%."

1 Answer

Tony Luo
Tony Luo
14,224 Points

You probably want to use src instead of target. Give that a shot.

Doesn't work :-/

Tony Luo
Tony Luo
14,224 Points

Oh! I see why now, and I guess I should have written an explanation of how I arrived at that conclusion.

In the img tag it has a src attribute with the value of "avatar.png". img[...] is an attribute selector, so we select the src attribute and provide that value which is "avatar.png".

This should work: img[src="avatar.png"].

Tony Luo
Tony Luo
14,224 Points

And sorry for spamming you but with the same logic:

img[title="avatar"] should work too.

img[title="avatar"] worked! The other one didn't though. Thank you!