编辑代码时,DIV标签会出错

时间:2013-03-30 01:57:25

标签: html dreamweaver

为什么在使用DreamWeaver编辑纯文本后我的DIV标签不起作用?

1 个答案:

答案 0 :(得分:1)

您在实际内容之前关闭了<footer>元素。

<!-- content ends
================================================== --> 

<!-- footer starts
================================================== -->
<footer id="footer" class="clearfix">
  </footer> //This right here needs to go after your footer code.
    <div class="container"> 
    //... bla bla bla
    </div>
    <!--row ends--> 

  </div>

//Add this here: </footer>
//Don't forget to remove the other one up there.
<!-- footer ends
================================================== -->