我有一个卡片窗口div
<div id="cards_window" class="popup_window ui-dialog ui-corner-all" title="Cards">
<div id="cards_title">
Cards <div id="cards_window_close" class="ui-button ui-icon ui-icon-circle-close popup_close"></div>
</div>
<div id="cards">
<div id="cards_pending"><h3>Cards Pending</h3></div>
<div id="cards_received"><h3>Cards Received</h3></div>
</div>
</div>
我在这里呈现我在特定位置的所有卡片实例,并且我希望待处理的卡片在待处理的div中处于位置并且在接收到的div中接收 我应该做什么,但我在完整的卡片div中得到div scattereed。
答案 0 :(得分:0)
完成了
<div id="cards_pending"><div style="clear: both;"><h3>Cards Pending</h3></div></div>\
<div id="cards_received"><div style="clear: both;"><h3>Cards Received</h3></div>