简体   繁体   中英

Behavior of the asterisk in field required under Sencha Touch

我有一个简单的问题,但是对此没有找到答案。.您知道是否可以在标签的开头而不是Sencha Touch应用程序的末尾在字段中添加所需的星号吗?

Simply add the following to your sass:

.x-field-required .x-form-label {
  &::after {
    content: '';
  }
  &::before {
    content: "*";
    display: inline;
  }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM