html – Bootstraped表 – 更小的字体大小

html – Bootstraped表 – 更小的字体大小,第1张

概述我在我的html中使用bootstrap表: <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"><style>.table-condensed {width: 90% !important;} 而且我想让表中的字体大小更小.如何调整当前代码以 我在我的HTML中使用bootstrap表:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/CSS/bootstrap.min.CSS"><style>.table-condensed {wIDth: 90% !important;}

而且我想让表中的字体大小更小.如何调整当前代码以获得所需的输出.提前谢谢了.

解决方法 先生.我会尝试这样的事情:
.table-condensed{  Font-size: 10px;}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/CSS/bootstrap.min.CSS" rel="stylesheet"/><table >  <thead>    <tr>      <th>Firstname</th>      <th>Lastname</th>      <th>Email</th>    </tr>  </thead>  <tbody>    <tr>      <td>John</td>      <td>Doe</td>      <td>john@example.com</td>    </tr>    <tr>      <td>Mary</td>      <td>Moe</td>      <td>mary@example.com</td>    </tr>    <tr>      <td>July</td>      <td>Dooley</td>      <td>july@example.com</td>    </tr>  </tbody></table>

我弄到了你这个小提琴:https://jsfiddle.net/mqhd0js6/.希望能帮助到你!

总结

以上是内存溢出为你收集整理的html – Bootstraped表 – 更小的字体大小全部内容,希望文章能够帮你解决html – Bootstraped表 – 更小的字体大小所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1136485.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存