0

在大多数项目中,我都包含一个 reset-css,然后从头开始使用我自己的 CSS 样式。

我想 GWT 可能会有所不同。推荐的方法是什么?

使用提供的 3 个主题之一并根据需要覆盖?从另一个主题开始?

你觉得什么作品最好?

4

2 回答 2

4

我是gwtbootstrap.github.com的忠实粉丝,它是非常流行的 Twitter Bootstrap 样式和小部件的一个端口。如果您愿意,可以插入修改后的引导主题。

一些优点:

  • 如果您技术精湛,但在制作漂亮的用户界面方面很糟糕,那么现在可以实现真正专业的外观。

  • 强大的 Twitter 引导社区

  • 小部件/样式非常熟悉,最终用户会有宾至如归的感觉

  • 易于定制,主题甚至可商用

这当然是 GWT 的一个端口并且有点滞后.. 但是开发人员非常敏感和乐于助人。

于 2012-11-01T22:04:46.763 回答
2

I recommend to start with one of the built-in themes. There are a lot of tiny little details you will have to account for (and make sure they work in all browsers) if you start from scratch.

After that the key decision is whether to use an external CSS file, a more traditional approach, or use CSS Resources: https://developers.google.com/web-toolkit/doc/latest/DevGuideClientBundle#CssResource

CSS Resources offer many nice features, like conditional CSS, runtime substitutions, obfuscation of class names, etc. An external CSS file maybe easier to work with.

For a large project, or any project with multiple developers, I would recommend CSS resources.

于 2012-11-01T23:52:03.483 回答