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>
'= 'をスタイルブロックから削除します。 –