- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我有一个表格,我想在左侧以粗体显示标题,在顶部以粗体显示标题。
标题在 IE 中是粗体,但在 Firefox 中不是。网站在这里:demo link
代码如下。
我做错了什么以及如何在 FF 中将元素设为粗体?
谢谢,
克里斯
HTML
<h2>Compare plans</h2>
<table class="compare-products">
<colgroup>
<col class="col1"/>
<col class="col2" />
<col class="col3" />
<col class="col4" />
<col class="col5" />
</colgroup>
<tr class="plan-headers">
<th></th>
<th>Starter</th>
<th>Business</th>
<th>Advanced</th>
<th>Dedicated</th>
</tr>
<tr class="recommended-for">
<td></td>
<td>Ideal start for static websites</td>
<td>Fast hosting for dynamic CMS websites</td>
<td>Custom configurations and high traffic sites</td>
<td>Dedicated resources for intensive work loads</td>
</tr>
<tr class="feature" title="">
<th scope="row">Web space</th>
<td>50MB</td>
<td>1GB</td>
<td>15GB</td>
<td>250GB</td>
</tr>
<tr class="feature" title="">
<th scope="row">Bandwidth</th>
<td>1GB</td>
<td>30GB</td>
<td>1TB</td>
<td>10TB</td>
</tr>
<tr class="feature" title="">
<th scope="row">Websites</th>
<td>1</td>
<td>2</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr class="feature" title="">
<th scope="row">CPU</th>
<td>Shared</td>
<td>Shared</td>
<td>1.2GHz</td>
<td>2.4GHz</td>
</tr>
<tr id="captchaFeature" class="feature" title="">
<th scope="row">Memory</th>
<td>Shared</td>
<td>Shared</td>
<td>1GB</td>
<td>4GB</td>
</tr>
<tr class="feature" title="">
<th scope="row">IP Addresses</th>
<td>Shared</td>
<td>Shared</td>
<td>2</td>
<td>8</td>
</tr>
<tr class="feature" title="">
<th scope="row">Zend Framework</th>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
</tr>
<tr class="feature" title="">
<th scope="row">cPanel/WHM</th>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
</tr>
<tr class="feature" title="">
<th scope="row">PHP/Python/Ruby</th>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
</tr>
<tr class="feature" title="">
<th scope="row">RAID Storage</th>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
</tr>
<tr class="feature" title="">
<th scope="row">DELL Hardware</th>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
</tr>
<tr class="feature" title="">
<th scope="row">99.9% Uptime</th>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
</tr>
<tr class="feature" title="">
<th scope="row">24/7 Support</th>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
<td><div class="yes">Yes</div></td>
</tr>
<tr class="feature" title="">
<th scope="row">IMAP/POP3 Accounts</th>
<td>5</td>
<td>25</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr id="manageFeature2" class="feature" title="">
<th scope="row">FTP Accounts</th>
<td>1</td>
<td>5</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr class="feature" title="">
<th scope="row">Offsite Backup</th>
<td>-</td>
<td>1GB Weekly</td>
<td>10GB Daily</td>
<td>100GB Daily</td>
</tr>
<tr class="feature" title="">
<th scope="row">MySQL Databases</th>
<td>-</td>
<td>2</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr class="feature" title="">
<th scope="row">Subdomains</th>
<td>-</td>
<td>2</td>
<td>Unlimited</td>
<td>Unlimited</td>
</tr>
<tr id="dedicatedFeature" class="feature" title="">
<th scope="row">SSL Certificate</th>
<td>-</td>
<td>-</td>
<td>Optional</td>
<td>Optional</td>
</tr>
<tr class="feature" title="">
<th scope="row">ASP & MSQL</th>
<td>-</td>
<td>-</td>
<td>Optional</td>
<td>Optional</td>
</tr>
<tr class="signup">
<th scope="row"></th>
<td>Sign Up</td>
<td>Sign Up</td>
<td>Sign Up</td>
<td>Sign Up</td>
</tr>
<tr class="faq-links">
<th scope="row">Learn more</th>
<td>Starter Plan FAQ</td>
<td>Business FAQ</td>
<td>Advanced FAQ</td>
<td>Dedicated FAQ</td>
</tr>
</table>
CSS
compare-products .col1
{
width: 20%;
}
.compare-products .col2
{
width: 20%;
}
.compare-products .col3
{
width: 20%;
}
.compare-products .col4
{
width: 20%;
}
.compare-products .col5
{
width: 20%;
}
.compare-products tr td
{
text-align: center;
}
.compare-products tr th[scope=row]
{
text-align: right;
border-bottom: 1px dotted #dddddd;
font-weight: bold;
}
.compare-products tr td
{
border-bottom: 1px dotted #dddddd;
padding: 5px 10px 5px 10px;
}
.compare-products tr.plan-headers th
{
font-size: 20px;
font-weight: bold;
border: none;
padding: 5px 5px 5px 5px;
text-align: center;
}
.compare-products tr.feature th
{
font-weight: bold;
}
.compare-products tr.recommended-for td
{
border: none;
padding: 5px 10px 10px 5px;
text-align: center;
}
.compare-products tr td div.yes, .compare-products tr td div.no, .compare-products tr td div.partial {
height: 16px;
text-indent: -9999px;
}
.compare-products div.yes {
background: url(images/yes.png) no-repeat center center;
}
.compare-products div.no {
background: url(images/no.png) no-repeat center center;
}
.compare-products div.partial {
background: url(images/partial.png) no-repeat center center;
}
最佳答案
我还没有足够的声誉来发表评论,所以我会把它们放在这里。
我使用的是 FF 10,左侧的行标题(网络空间、带宽等)显示为粗体。字体没有列标题上的那么大,但绝对是粗体。
关于html - CSS 表格 TH 元素在 Firefox 中不是粗体(但在 IE 中可以),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10404652/
程序集,masm 嘿,我写了宏来打印存储在 dane1 段中的 1 字节值。 我将值除以 16,然后将提醒推送到堆栈,直到值==0。然后我弹出提醒将它们转换为 ASCII 码,并打印它们。 有人可以看
我在 Apache Geronimo 2.1.3 上有一个 Web 服务应用程序。 我正在使用 JAX-WS,使用 SOAP 1.1 注释 POJOS。 (使用 Sun JDK 1.5) 各种客户端都
我有一个数据变量,monthArray,它被多个消费者读取,并由单个定期更新程序线程定期更新数据。全部异步。 我已经考虑了这两个选项来安全地执行更新。 ArrayList tempArray
我有一组 3D 体。每个 Body 由 8 个点定义,每个点具有三个坐标。所有的物体都是立方体的或近似立方体的。我想用系统的点栅格“填充”立方体。坐标存储在简单的 data.frames 中。 我开发
我正在处理遗留代码,需要打补丁。 问题:一个古老的应用程序发送错误的 HTTP POST 请求。其中一个参数未经过 URL 编码。我知道这个参数总是排在最后而且我知道它的名字。我现在正尝试在运行在 t
我想在触摸屏幕时移动 sprite body ,但它不能发生...... -(void)ccTouchEnded:(UITouch *)touch withEvent:(UIEvent *)event
这个问题在这里已经有了答案: Can a union be initialized in the declaration? (3 个答案) 关闭 7 年前。 如果它是一个struct那么它就可以完成
我正在尝试获取生成 sigsys 信号的系统调用的地址!但我从 gcc 收到以下错误: gcc emulator.c -fms-extensions error: ‘siginfo_t’ has no
当我使用 Postman 进行 API 调用时,我收到一个 JSON 对象..这是我所期望的。 但是,当我像这样与 Guzzle 进行相同的调用时: $client = new \GuzzleHttp
在编码时,出现了差异。通常在编写简单的方法或构造函数时,我经常使用表达式体技术。但是,当我产生以下内容时: public class Sample : ISample { private r
我正在使用 LibGDX 创建一个新项目。 我想做的是,我将 tmx 文件中的主体加载到工作正常的关卡中。尸体也有一个 Sprite 。 问题是,我想让用户触摸场景中的某些 body 。当他们触摸 b
我的意图:在不使用 union 的情况下循环遍历一个结构的 30 个成员,所有成员都是字符数组类型,每个成员都存储对 itoa 的调用结果。在下面的代码中,我将结构体成员命名为a-z、A-D。在调用函
我必须将我的代码段之一从 C 转换为 java。代码如下。 union commandString{ char commndStr[20]; struct{ char
#include union NumericType { float value; int intvalue; }Values; int main() { Values.va
我在此代码中收到错误: fun num(num:Int):Int { if (num > 0){ print(num % 10) return num / 10
我是一名优秀的程序员,十分优秀!