jsp页面:字号大小
<c:if test="${not empty checkReason || not empty otherReason }"> <div class="time_div"> <div class="col-xs-12 " style="color: red;"> <div class="col-xs-3 text-left"> 审核不通过原因 </div> <c:if test="${not empty checkReason }"> <div class="col-xs-9 "> <c:forEach items="${checkReason}" var="reason" varStatus="index"> <div class="col-xs-12 " style="color: red; padding: 0px;"> <c:if test="${not empty reason}"> ${index.index+1}.${reason} </c:if> </div> </c:forEach> </div> </c:if> <c:if test="${not empty otherReason}"> <div class="col-xs-3 "></div> <div class="col-xs-9 brDiv" style="color: red;"> <div class="col-xs-12 " style="color: red; padding: 0px;"> ${count}.${otherReason}</div> </div> </c:if> </div> </div> </c:if>
如果是全局都想改的话就改bootstrap的源css文件。;。否则就自己写css覆盖。
可以直接在 style上加 font-size:10px 属性,
也可以加个 class 样式,然后在css样式里添加这个 class 的 font-size:10px 属性。
在你的 style 属性里加 font-size:16px (自己改值)