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

请高手指导,盒子模型练习题

盒子模型练习题

hello world!

为什么红线不出来呢,是不是哪里错了,求高手指点

提问者:MissRui1020 2015-05-28 10:10

个回答

  • YYY风大雨大都不怕
    2016-08-20 14:04:05

    你看看你的分号有没有在中文状态下输入

  • hanhua
    2015-05-31 22:17:07

    盒子距页面有10px的上边距---margin-top:10px,盒子中的内容距左侧有15px填充---padding-left:15px

  • hanhua
    2015-05-31 22:15:54

    <style type="text/css">
    .myBox{
    width:200px;
    height:100px;
    border:1px solid red;
    margin-top:10px;
    padding-left:15px;
    }
    </style>

  • _marven
    2015-05-29 12:41:45

    <style type="text/css">

    .myBox{

            width:200px;

            height:100px;

            border:1px solid red;

            padding-top:10px;

            padding-left:15px;

            }

    </style>


  • 成者并非一蹴而就
    2015-05-28 14:49:48

    <!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;
            padding-top:10px;
            padding-left:15px;
            }
    </style>
    
    </head>
    <body>
    <div class="myBox">Hello World!</div>
    
    <!--在此添加一个div标签,并设置其class属性为myBox-->
    
    
    
    </body>
    </html>