我知道我可以做到:
::-ms-input-placeholder, /* Microsoft Edge */
:-ms-input-placeholder, /* Internet Explorer 10-11 */
::placeholder /* Chrome, Firefox, Opera, Safari 10.1+ */
{
text-indent: 10px;
}
但是我想使用出价属性[style ...]
<input type="text" [style.placeholder.text-indent.px]="customIndent">
答案 0 :(得分:0)
我不确定我是否理解您的问题,但:
您可以尝试
number = 10; getStyle() { style = { 'text-indent:' : this.number + 'px' } return style; }
并使用类似:
<input type="text" [ngStyle]="getStyle()">