0
Hello! What is wrong with my code? I want a square that goes left by 50px, then right by 9px, then left 20px.
#square { width: 100px; height: 100px; background-color: red; position: relative; } @keyframes square { 0% { background-color: blue; top: 0px; left: 50px; } 50% { background-color: black; top: 0px; right: 9px; } 100% { background-color: red; top: 0px; left: 20px; } }
3 ответов
+ 4
Eric as D'lite said, use body tag. Its necessary to display anything on your webpage.
+ 1
**NOTE:
This is my HTML: 
<html>
  <head>
<title> Fun With CSS </title>
  </head>
  <body> 
     <div id="square"></div>
</body> 
  </html>
Use this markup
0
**NOTE:
This is my HTML: 
<html>
  <head>
<title> Fun With CSS </title>
  </head>
<div id="square"></div>
  </html>



