设置表列名称的大小

时间:2015-08-11 09:19:35

标签: html twitter-bootstrap twig

我有一个表格,我有一些列,现在我想设置我的列名称的大小。默认情况下它现在很小。

这是我的专栏名称---

lis = [2,3,4,5] 
print(sum_items(lis))

脚本不起作用----

<tr class="something">
  <th> Name </th>
  <th>Phone</th>
</tr>

现在使用bootstrap或基本html如何设置列名粗体和大

我知道有很多解决方案可以解决这个问题,虽然我想知道它是如何解决的。

任何人都知道如何解决这个问题。谢谢你提前。

1 个答案:

答案 0 :(得分:2)

使用font-sizefont-weight作为列名的粗体和粗体。

// Alternate jQuery Solution since you use Twitter Bootstrap

var header = $('.something th');
header.css('font-size', '2em'); 
header.css('font-weight', 'bold');
/* Simple CSS Solution */

.something th {
  font-size: 2em; /* em is relative to the parent font size */
  font-weight: bold;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
  <tr class="something">
    <th>Name</th>
    <th>Phone</th>
  </tr>
</table>