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 Foundations Text, Fonts, and Lists Text Properties

Im doing what its asking me to do and its says its wrong

its asking me to remove the decoration from the link

index.html
<!DOCTYPE html>
<html>
<head>
    <title>Text Properties</title>
    <link rel="stylesheet" href="page.css">
    <link rel="stylesheet" href="style.css" />
</head>
<body>
    <h1>The quick brown fox jumps over the lazy dog</h1>
    <p>
        Pellentesque sem augue, auctor quis dictum et, interdum nec felis. Suspendisse faucibus viverra enim, vitae facilisis mi euismod id. Morbi ac erat mauris, a semper ligula. Etiam semper. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
        <a href="#">Aliquam vel metus sit amet nulla et dolor</a>
    </p>
</body>
</html> 
style.css
h1 {
text-transform: capitalize;
}

p {
text-indent: 50px;
}

p {
line-height: 1.5;
}

a:hover {
  text-decoration: none;
}

2 Answers

Treasure Porth
STAFF
Treasure Porth
Treehouse Teacher

You're removing the text-decoration only when a user is hovering over the link. Did you mean to remove the text-decoration on a instead of a:hover?

a {
text-decoration: none; 
}
Emma Willmann
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Emma Willmann
Treehouse Project Reviewer

Super close. The only thing you need to do is not use the hover pseudo class.

a {
  text-decoration: none;
}