elementUI 表单input中如何单独调整一颗星向右偏移?
改一下整个表单所有红色star都会向右偏移,用一个class类把单独input圈起来,也失败。
早有尝试过.el-form-item__content:nth-child(4)::after{} 与.el-form-item__content:nth-of-type(4)::after{} 都失败了。
先谢谢!
.el-form-item__content::after {
content: "*";
color: #ff4949;
position: absolute;
top: 0.01rem;
right: 0.16rem;
}
css3 选择器 nth-child(4)