jstl - set size for jsp:include tag -
is there way set size jsp:include tab? have following code
<div class="tab-pane fade in active" id="fromdatabase"> <jsp:include page="genericdb.jsp" flush="true" /> </div>
the page contents less. still showing scroll bar in page. tried set width in div tag.
<div class="tab-pane fade in active" id="fromdatabase" style="width:800px"> <jsp:include page="genericdb.jsp" flush="true" /> </div>
then size reduced showing scroll bar inside div area. there anyway size of jsp:include? thanks
Comments
Post a Comment