Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 GWT 中的特定标签字母上加上颜色。
例如,我的一个标签说“你好”
所以它应该像*H*ello,所以“H”是蓝色的,“ello”将保持黑色..
我能做到这一点吗?
Label lbl = new Label("Hello"); lbl.setStyleName("lblStyle");
现在 H 在输出中应该是蓝色, ello 应该是黑色 在另一个方案中,他应该是蓝色,“llo”应该是黑色
谢谢
参考
这将帮助你
:first-letter { color:Blue; }