基本的HTML问题

时间:2017-02-12 16:53:35

标签: 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>

1 个答案:

答案 0 :(得分:1)

=标记中的<style>外,一切都很好。只需删除它。

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