我是编码的新手,只是想为一门课程创建一个圆圈,但它不起作用。有人可以帮忙并建议我做错了吗?
<!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>
答案 0 :(得分:1)
除=
标记中的<style>
外,一切都很好。只需删除它。
#circle {width: 50px;
height: 50px;
border-radius: 25px;
background-color: red;
}