标签未向左对齐

时间:2019-01-24 05:20:48

标签: sapui5 text-alignment

我正在尝试将标签向左对齐,并且已经在XML视图和CSS文件中为其提供了属性,但它根本没有改变

enter image description here

XML

<Label text="Buyer Name" textAlign="Left" class="customFontSimpleForm"  />

CSS

.sapMLabel {
    float: left;
    text-align : left;
}

2 个答案:

答案 0 :(得分:1)

如果您使用SimpleForm控件,则可以使用以下CSS

.sapUiForm .sapUiFormElementLbl>.sapMLabel {
    text-align: left !important;
    width : auto;
}

注意:根据您的要求更新选择器

答案 1 :(得分:0)

使用下面的CSS

.sapMLabel {
  display:table
}