This forum is now read-only. Please use our new forums! Go to forums

0 points
Submitted by princesscoder
about 9 years

what is wrong!!!

img { display: block; height: 100px; width: 300px; margin: auto; }

p { text-align: center; font-family: Garamond, serif; font-size: 18px; }

/Start adding your CSS below!/ div { height: 50px; width: 120px; border: #6495ed; background-color: #bcd2ee; }

div { border-radius:5px; }

div { margin:auto; text-align:center; link-decoration: none; color: #FF99FF; font-family: Vedana; }

Answer 54e8589e9113cb196a000d7f

2 votes

Permalink

total number of mistakes: 3

first of all, it is font-family: Verdana; (you forgot the r)

secondly, the property is text-decoration not link-decoration

and last, you set your link (you currently you set the div’s text-decoration (assuming you modified the link-decoration) to none) please use the link css selector:

a {
/*decoration here*/
}
points
Submitted by stetim94
about 9 years