jsp页面:字号大小
<c:if test="${not empty checkReason || not empty otherReason }">
<p class="time_p">
<p class="col-xs-12 " style="color: red;">
<p class="col-xs-3 text-left"> 审核不通过原因 </p>
<c:if test="${not empty checkReason }">
<p class="col-xs-9 ">
<c:forEach items="${checkReason}" var="reason" varStatus="index">
<p class="col-xs-12 " style="color: red; padding: 0px;">
<c:if test="${not empty reason}">
${index.index+1}.${reason}
</c:if>
</p>
</c:forEach>
</p>
</c:if>
<c:if test="${not empty otherReason}">
<p class="col-xs-3 "></p>
<p class="col-xs-9 brp" style="color: red;">
<p class="col-xs-12 " style="color: red; padding: 0px;">
${count}.${otherReason}</p>
</p>
</c:if>
</p>
</p>
</c:if>
在你的 style 屬性裡加 font-size:16px (自己改值)
可以直接在 style上加 font-size:10px 屬性,
也可以加個 class 樣式,然後在css樣式裡加入這個 class 的 font-size:10px 屬性。
如果是全域都想改的話就改bootstrap的來源css檔。 ;。否則就自己寫css覆蓋。
如果是個別樣式可以font-size:10px !improtant;