【发布时间】:2010-06-20 06:46:38
【问题描述】:
所以我在页脚中放了几个框,当我使用边距移动它们时,它们也在移动整个页脚。有谁知道我做错了什么?
---php---
<?php wp_footer() ?>
<div id="pinkpoint">
</div>
<div id="footnav">
<div id="footernavlinks>
</div>
</div>
</body>
</html>
---两个div的css---
#footernavlinks {
clear: both;
margin:10px 0 0 25px;
width: 300px;
height: 250px;
background-image:url('http://cowgirlsbaking.com/wp-content/themes/autumn-leaves/images/footblockback.png');
}
#footnav {
background-color: #EB7CDB;
height: 500px;
width: 100%;
}
【问题讨论】: