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

0 points
Submitted by ebroadhe
over 9 years

20/21 Getting the limegreen color issue. The color isnt being accepted

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

   input[type="submit"] {
        background: limegreen;
        color: black;
    }
</style>
</head>
<body>
<img src="https://codecademy-content.s3.amazonaws.com/courses/web-beginner-en-3pc6w/images/avatar.jpg" height="250" width="250">
<p>Welcome to the internetz, its full of cats. Beware</p>
<input type="email" placeholder="Email">
<input type="submit">
</body>

Answer 53e414de52f8633bde0005d0

-2 votes

Permalink

These two property/values that have not been included in any of your CSS rules are causing the problem:

padding:12px
font-size:18px
```
points
Submitted by Judy
over 9 years