将SAPUI5按钮图标放置在文本上方(而不是左侧)

时间:2019-03-14 07:54:13

标签: css button sapui5

我需要将sap.m.Button的图标放在文字上方。

我找到了此博客文章:Button with text UNDER the icon 但不幸的是,这种方法似乎不再起作用。

是否有使用CSS将图标放在文本上方的便捷方法?

1 个答案:

答案 0 :(得分:1)

您可以使用自定义类和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;
}