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

0 points
Submitted by JailHouseRock
almost 10 years

?/21 [resolved] Set the input's "border" to "0".

Hiya, I keep getting the message “Oops, try again. Set the input’s “border” to “0”. Can anyone help!

<!DOCTYPE html>
<head>
<style> 
body {
text-align: center;
background: url(url("https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/splash.jpg")
color:white;
font-family: Helvetica;
}
p {
font-size: 24px;
}
input { 
    border:0;
}
</style>
</head>
<body>

Answer 539f27059c4e9d76bd00043f

0 votes

Permalink

This line has some problems:

background: url(url("https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/splash.jpg")
  • You have repeated url(
  • You’e left off the ; at the end of the line
points
Submitted by Judy
almost 10 years

2 comments

JailHouseRock almost 10 years

Urrrrgh, it’s so obvious now that you have pointed that out! Thanks So MUCH :)

Judy almost 10 years

You’re welcome!