Check out the following code snippet. I am trying to group mid_left
and mid_right
within a single mid
div tag, but struggling with positioning mid_right
correctly - either outside of the mid
tag or not at the same level as mid_left
. I have experimented with float:left
and display:inline-block
, but haven't been able to fix it yet. Any ideas on how to resolve this?
/* CSS Document */
body {
margin:0 auto;
padding: 0;
background: url(../img/7_092641_2_meitu_1.jpg);
background-attachment: fixed;
background-repeat: no-repeat;
background-size: 100% 100%;
font-size: 15px;
color: #E2E2E2;
line-height: 24px;
font-family: '微软雅黑';
}
...
...
...
</footer><!--footer-->
</div><!--wrapper-->
</body>
</html>