2017-02-12 11 views
1

私はコースのサークルを作成しようとしているにすぎませんが、コーディングの初心者ですが動作しません。誰かが助けて、私が間違っていることを提案することはできますか?基本的なHTMLの問題

<!doctype html> 
<html> 
<head> 
    <title>JavaScript Lesson</title> 
    <meta charset="utf-8" /> 
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> 
    <meta name="viewport" content="width=device-width, initial-scale=1" /> 
    <style> 
     #circle = {width: 50px; 
     height: 50px; 
     border-radius: 25px; 
     background-color: red; 
     } 
    </style> 
</head> 
<body> 
    <div id="circle"> </div> 
</body> 
</html> 
+2

'= 'をスタイルブロックから削除します。 –

答えて

1

すべてが=<style>のタグことを除いて、結構です。それを取り除くだけです。

#circle {width: 50px; 
    height: 50px; 
    border-radius: 25px; 
    background-color: red; 
    }