我试图以可重用且可读的方式创建一些辅助类。
我想使用这个方案:textField.textContentType = UITextContentTypeTelephoneNumber;
例如:class="property-name(direction)(value)"
在CSS中,它将被写为class="margin(top)(15)"
有效吗?是的,请看下面的小提琴:
.margin\(top\)(\15\) { ... }

.sample__wrapper {
border: 1px solid #eee;
padding: 15px;
}
.sample__item {
width: 100%;
height: 100px;
background: #eee;
}
.margin\(top\)\(15\) {
margin-top: 15px;
}

因为我很少看到这种语法(使用<div class="sample__wrapper">
<div class="sample__item"></div>
<div class="sample__item margin(top)(15)"></div>
</div>
作为括号),我想知道它是否允许这样做?
修改
答案 0 :(得分:-1)