有人和我一样吗
有人和我一样吗
有人和我一样吗
2021-06-02
可以把.hello里面的windows,改为width试试,
我是这样写的,和他给出的结果一样
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>盒子模型练习题</title>
<style>
.myBox{
width:200px;
height:100px;
border:1px solid red;
padding-left:15px;
margin-top:10px;
}
</style>
</head>
<body>
<div class="myBox">
Hello World!
</div>
</body>
</html>
举报