首页 >社区问答列表 >bootsrap修改字体大小

bootsrap修改字体大小

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">  &nbsp;&nbsp;&nbsp;  审核不通过原因   </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>


  • 代言
  • 代言    2016-11-12 11:54:053楼

    如果是全局都想改的话就改bootstrap的源css文件。;。否则就自己写css覆盖。

    +0添加回复

  • 回复
  • 代言
  • 代言    2016-11-12 11:53:592楼

    可以直接在 style上加 font-size:10px 属性,

    也可以加个 class 样式,然后在css样式里添加这个 class 的 font-size:10px 属性。


    +0添加回复

  • 回复