What is the issue with this simple HTML, CSS layout?
This question already has an answer here:
Add this style in your CSS file:
.container:before,
.container:after {
display: table;
content: " ";
}
.container:after {
clear: both;
}
This should solve the Issue!
链接地址: http://www.djcxy.com/p/88442.html