How element-ui sets the label width of the form el-form-item to zero

< el-form: model= "formData": rules= "rules" ref= "formData" label-width= "80px" class= "demo-formData" >

     <el-form-item label="" lable-width="0px" prop="remark">
       <el-input
         type="textarea"
         :rows="7"
         placeholder=""
         v-model="formData.remark">
       </el-input>
     </el-form-item>
 </el-form>
 ![][1]

want to align the dismissal with the text field


has been solved by itself. Label-width is not in the right position

.
Menu