最近在用css画一个排班表的时候需要用到div来绘制,于是碰到如题所示的问题,纠结了有一天,终于在csdn找到一个不错的办法,感谢
http://topic.csdn.net/u/20090223/16/0b6734b0-d450-4a86-9df6-26bf19947dd1.html。自己做个小记录。
<div style="float:right;margin-top:8px;width:670px;overflow-x:scroll;white-space:nowrap;">
<c:forEach var="sgn" items="${result.control.surgeonName}">
<div>
<c:forEach var="order" items="${result.orders}">
<span style="display:inline-block;"> <div style="width:100px;height:20px;">test</div></span>
</c:forEach>
</div>
</c:forEach>
</div>
posted on 2010-02-04 16:22
ju 阅读(1019)
评论(0) 编辑 收藏