我需要将sap.m.Button
的图标放在文本的顶部。
我发现这篇博文:Button with text UNDER the icon但不幸的是,这种方法似乎不再起作用了。
有没有方便的方法使用CSS将图标放在文本的顶部?
您可以使用自定义类和CSS来实现它
视图
<Button class="newBtn" icon="sap-icon://sys-help" text="Default Button" />
CSS
.newBtn .sapMBtnInner {
height: 4rem; /* Increase it to 6rem */
}
.newBtn .sapMBtnText>.sapMBtnIcon {
display: contents;
line-height: 3.8rem; /* Add this line when you are using height as 6rem */
}
.newBtn .sapMBtnInner.sapMBtnText {
padding-left: 0.75rem;
}
.newBtn .sapMBtnIcon {
font-size: 1.7rem; /* Icon size */
}
.newBtn .sapMBtnContent {
line-height: normal;
}