标签没有左对齐
Label is not aligning to left
我正在尝试将标签左对齐,我在 XML 视图和 CSS 文件中为其指定了 属性,但它没有改变完全
XML
<Label text="Buyer Name" textAlign="Left" class="customFontSimpleForm" />
CSS
.sapMLabel {
float: left;
text-align : left;
}
如果你使用的是SimpleForm
控件那么你可以使用下面的CSS
.sapUiForm .sapUiFormElementLbl>.sapMLabel {
text-align: left !important;
width : auto;
}
注意:根据您的要求更新选择器
我正在尝试将标签左对齐,我在 XML 视图和 CSS 文件中为其指定了 属性,但它没有改变完全
XML
<Label text="Buyer Name" textAlign="Left" class="customFontSimpleForm" />
CSS
.sapMLabel {
float: left;
text-align : left;
}
如果你使用的是SimpleForm
控件那么你可以使用下面的CSS
.sapUiForm .sapUiFormElementLbl>.sapMLabel {
text-align: left !important;
width : auto;
}
注意:根据您的要求更新选择器