问答详情
源自: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>


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

<style>

 .myBox{

    width:200px;

    height:100px;

    border:1px  solid red;

    margin-top:10px;

    padding-left:15px;

    }


</style>

</head>

<body>



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

<div class="myBox"> hello world </div>

</body>

</html>


提问者:慕九州3457581 2018-08-25 17:25

个回答

  • 无常cc
    2018-11-20 15:09:41

    title下面一行注释内容,你应该是不小心把右边的尖括号删掉了,补充上就好了。

  • sfanxi
    2018-09-08 14:28:46

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

    你把老师的结束尖括号 >  给删掉了,加上就好了  

  • 纳兰夕佳
    2018-09-01 15:59:36

    是<style type="text/css">,不好意思

  • 纳兰夕佳
    2018-09-01 15:58:21

    <style type="test/css">

    这样写