div中内容显示不完全,滚动条不能出现!急!!!!




<%-- --%>
                        <c:forEach items="${page.items }" var="t" varStatus="index">
                            <div style="padding-left:50px;">

                                <span > <label style="float:left;"><font  size="2" color="blue">物料号</font></label>${t.prodCode} 

                                <span > <label><font size="2" color="blue">物料名</font></label>${t.name }<br>

                                <c:forEach items="${t.prodAttriValues }" var ="tt">

                                <input value="${tt.prodTypeAttri.name }" style="width: 160px;float:left;background:#FFC;filter:alpha(opacity=90);" class="inp_out" type="text" />
                                <input value="${tt.attributeValue }" style="width: 160px;float:left;" class="inp_out" type="text" />&nbsp; &nbsp; &nbsp;<br><br>                        


                                </c:forEach>
                                <!-- <div style="clear:both;height:1px;background:#3081c9;width:100%;overflow:hidden;"></div> -->


                            </div>


                            </c:forEach> 

                            </div>

把对应的div设置一个height看行不行,能不能正常显示。
div加上

 overflow:hidden;

看看有没有效果

加上overflow=scroll看看