问答详情
源自:2-3 编程练习

为什么我的代码显示不出来呢?明明和源代码一样啊

<!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 type="text/css">

<!--在此定义一个类选择器myBox,根据要求设置相关CSS属性-->

.myBox{

    width:200px;

    height:100px;

    border:2px solid blue;

    margin-top:10px;

    padding-left:15px;

}

</style>

</head>

<body>

<div class="myBox">Hello World!</div>

<!--在此添加一个div标签,并设置其class属性为myBox-->

</body>

</html>


提问者:qq_慕虎8366744 2019-12-16 23:12

个回答

  • 慕粉2151224176
    2019-12-21 17:08:51

    style中包含<!-- -->,删除即可