有没有办法为 jsp:include 选项卡设置大小?我有以下代码
<div class="tab-pane fade in active" id="fromDatabase">
<jsp:include page="GenericDB.jsp" flush="true" />
</div>
页面内容较少。但它仍然在页面中显示滚动条。我试图在 DIV 标签中设置宽度。
<div class="tab-pane fade in active" id="fromDatabase" style="width:800px">
<jsp:include page="GenericDB.jsp" flush="true" />
</div>
然后尺寸减小了,但它在 div 区域内显示滚动条。无论如何,jsp:include 的大小是否存在?谢谢