こんにちは、私はGXTに取り組んでいます
アイコン付きのボタンがあります。
アイコンを中央に配置したい。
現在はこんな感じです。
ボタンのアイコンは左にあります (IconAlign.LEFT のため)。
真ん中にしたい。しかし、IconAlign.CENTER のようなものはありません。
コードに何を追加すればよいか考えている人がいる場合は、共有してください
コード
button.setIconAlign(IconAlign.LEFT);
button.setIcon(Resources.INSTANCE.modify());
button.setStyleName("project-Button");
CSS
.project-Button {
color: Black;
border: thin outset #FF6600;
font-family: Courier New, Century Gothic, Times New Roman, Verdana, Arial;
vertical-align: middle;
text-align: center;
background-color: White;
cursor: pointer;
}
前もって感謝します
更新しました
public interface Resources extends ClientBundle {
public Resources INSTANCE = GWT.create(Resources.class);
@Source("Images/modify.png")
ImageResource modify();
}