我有此代码以显示模式窗口。 但是我需要更改文本的字体大小。 我该怎么办?
var modal = $('#myModal');
modal.find('.modal-body p').html('I need this text in one line. <br/>And this text in another line');
$("#myModal").modal();
预先感谢
答案 0 :(得分:0)
为什么不尝试将CSS类添加到标签中。
将此添加到您的CSS文件中:
.small-font{
font-size: small;
}
和代码:
var modal = $('#myModal');
modal.find('.modal-body p').html('<p class="small-font">I need this text in one line. <br/>And this text in another line<p>');
$("#myModal").modal();
或,您可以在文本周围使用<small>
标签,例如:
<small>I need this text in one line. <br/>And this text in another line</small>