wp231957 发表于 2020-2-12 12:59:22

原来是下面的div不显示 现在搞得整个网页啥都不显示

<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
        <style type="text/css>
           div.one
           {
              border-style:solid;
                  border-width:1px;
                  border-color:#0000ff
              margin-top:250px ;
              width:500px;
              margin-left:400px;
              height:180px
           }
       div.two
           {
              border-style:solid;
                  border-width:1px;
                  border-color:#000
              margin-top:500px ;
              width:500px;
              margin-left:400px;
              height:180px
           }
        </style>
       
</head>
<body>
   <div class="one">
         <form class="form-horizontal">
             <label>用户名</label>
             <input type="text" class="form-control" id="input1" value=""><br>
             <label>留言内容</label>
             <input type="text" class="form-control" id="input2" value=""><br>
             <input type="submit"value="发布"></input>
         </form>
       </div>
   <div class ="two">
         <p>这里咋不给我显示呢</p>
   </div>

</body>
</html>

不二如是 发表于 2020-2-12 14:42:51

1、箭头所指处:


补全:<style type="text/css">

里面的语法 10 和 20 少 ;

页: [1]
查看完整版本: 原来是下面的div不显示 现在搞得整个网页啥都不显示