如何复制 html 标题标签的样式
谁能告诉我如何使用 CSS 复制
标签的样式?
Can anyone tell me how to replicate the styling of a <h3>
tag using CSS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
谁能告诉我如何使用 CSS 复制
标签的样式?Can anyone tell me how to replicate the styling of a <h3>
tag using CSS?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
来自:“附录 D. HTML 4 的默认样式表” http://www.w3 .org/TR/CSS2/sample.html
当然,Kendrick 所说的浏览器可能使用与 W3C 建议不同的格式是正确的。
From: "Appendix D. Default style sheet for HTML 4" http://www.w3.org/TR/CSS2/sample.html
Of course, Kendrick is right in saying that browsers may use different formatting than suggested by the W3C.
H3 标签的格式由浏览器选择,因此您也许可以为一种浏览器复制它,但它不一定映射到另一种浏览器......
The formatting of the H3 tag is chosen by the browser, so you may be able to replicate it for one browser but it won't necessarily map to another one...
如果你想获得所有浏览器的 Firefox 样式,你可以在使用它检查 h3 元素时查看 Firebug 的“计算样式”选项卡,然后复制你在 CSS 文件中看到的内容。
If you want to get Firefox's style for all browser's, you can look in the "computed styles" tab of firebug when inspecting an h3 element with it, and copy what you see in a CSS file.