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 Basics (2014) The Box Model Display Values

Elena Paraschiv
Elena Paraschiv
9,938 Points

The callout doesn't take the properties of color orange and text:decoration none from the anchor in CSS

a:visited {
  color: lightblue;

}

a:hover {
  color: rgba(255, 169, 73, .4);
}

a:active {
  color: lightcoral;
}
.callout {
    font-size: 1.25em;
    border-bottom: 3px solid;
    padding: 0 9px 3px;
    margin-top: 20px;
    display: inline-block;
}

HTML

<a class="callout" href="#more" >Find out more</a>
 <a class="callout" href="#wildlife" >See the Wildlife</a>

1 Answer

In the code you posted you did not add a color or text-decoration.

Also, refer to the Markdown Cheatsheet on how to format your quote in the future. The link is below.