Adding link to my button help

<PLEASE USE THIS TEMPLATE TO HELP YOU CREATE A GREAT POST!>

<Below this line, add a link to the EXACT exercise that you are stuck at.>

<Below this line, in what way does your code behave incorrectly? Include ALL error messages.>

``` Error says: Oops, try again. Did you remember to set your link's text-decoration to none;? Where is the problem? Please tell me, thanks.

/Start adding your CSS below!/
div {
height: 50px;
width: 120px;
border-color: #6495ED;
background-color: #BCD2EE;
border-radius: 5px;
margin: auto;
text-align: center;
{

a {
text-decoration: none;
color: white;
font-family: Monaco;
}

HTML:

About Me

We're Codecademy! We're here to help you learn to code.



Very good website
</body>
<do not remove the three backticks above>

the div css selector has two opening curly brackets ({) instead of a opening and a closing curly bracket

2 Likes

Can u send me fixed css?

div {
height: 50px;
width: 120px;
border-color: #6495ED;
background-color: #BCD2EE;
border-radius: 5px;
margin: auto;
text-align: center;
{

the { after tex-align: center; should be a }

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.