css 使表响应,第一行中的文本为粗体。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 使表响应,第一行中的文本为粗体。相关的知识,希望对你有一定的参考价值。
/* Making tables responsive and the text in the first row bold. */
tbody tr td:nth-of-type(1) {font-weight: bold;}
@media screen and (max-width: 600px) {
table {width:100%;}
thead {display: none;}
tr:nth-of-type(2n) {background-color: inherit;}
tr td:first-child {background: #f0f0f0; font-weight:bold; font-size:1.3em;}
tbody td {display: block; text-align:center;}
tbody td:before {
content: attr(data-th);
display: block;
text-align:center;
}
}
.table-1 td, .table-1 th {
white-space: normal !important;
}
以上是关于css 使表响应,第一行中的文本为粗体。的主要内容,如果未能解决你的问题,请参考以下文章
将部分数据工具提示文本设置为粗体
将 UILabel 文本设置为粗体 [重复]
如何在运行时将文本框的文本设置为粗体?
discord.js 以粗体文本发送 api 响应
为啥我的所有 UIAlertView 标签/文本在 iOS 8 中默认为粗体
如何将 HTML5 画布文本设置为粗体和/或斜体?