css - bootsrap修改字体大小
阿神
阿神 2017-04-17 14:18:11
0
4
1089

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

闭关修行中......

reply all(4)
左手右手慢动作

Add font-size:16px to your style attribute (change the value yourself)

洪涛

You can directly add the font-size:10px attribute to the style,

You can also add a class style, and then add the font-size:10px attribute of this class in the css style.

Peter_Zhu

If you want to change it globally, change the source css file of bootstrap. ;. Otherwise, just write the css coverage yourself.

左手右手慢动作

If it is an individual style, you can use font-size:10px !improtant;

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template