gpt4 book ai didi

html - Bootstrap 表 - 较小的字体大小

转载 作者:技术小花猫 更新时间:2023-10-29 12:57:01 26 4
gpt4 key购买 nike

我在我的 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 class="table table-condensed">
<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>

我得到了你的 fiddle :https://jsfiddle.net/mqhd0js6/ .希望对您有所帮助!

关于html - Bootstrap 表 - 较小的字体大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40125329/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com