-1

Why does my DIV tags not work after editing pure text with DreamWeaver?

4

1 回答 1

1

You closed the <footer> element before the actual content.

<!-- 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
================================================== --> 
于 2013-03-30T02:07:42.773 回答