gwt - 如何重置 GWT 应用程序的 CSS?
我想做的是应用系统范围的 CSS 重置。我该怎么做?
以下是有关 CSS 重置含义的一些信息。
重置样式表的目标是 减少浏览器的不一致 像默认行高之类的东西, 标题的边距和字体大小, 等等。
What I would like to do is apply a system-wide CSS reset. How can I do this?
Here's a little bit of information about what is meant by a CSS reset.
The goal of a reset stylesheet is to
reduce browser inconsistencies in
things like default line heights,
margins and font sizes of headings,
and so on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们通过在我们的主机 html 页面中链接一个 Reset.css 来实现这一点,就像您通常所做的那样。它的工作原理正如您所期望的那样。您还可以将reset.css链接到模块文件中,但在主机页面中似乎更合适。
您可能没想到的是,如果您继承了 module.xml 文件中的默认主题,即使您没有链接它,GWT 的默认 css 也会在之后注入。你可以影响这种行为。请阅读 http://code.google.com/webtoolkit/doc/latest/DevGuideUiCss。有关 CSS 和 GWT 的详细信息,请参见 html。
We do this by linking a reset.css in our host html page, as you normally would. It works like you would expect. You can also link reset.css into your module file, but it seems more appropriate in the host page.
What you might not expect is that GWT's default css will be injected afterwards, even if you don't link it in, if you're inheriting the default theme in the module.xml file. You can affect that behavior. Read http://code.google.com/webtoolkit/doc/latest/DevGuideUiCss.html for more information about the details of CSS and GWT.