About the label problem in el-form-item
- Dominant language
- Vue
- Stars
- 54k
- Forks
- 14.4k
- PR merge metrics
- No merged PRs in 30d
Description

I want this label to align with my title, but I find it hard to do
`
Arrival Port Reliability
Download
`
`return {
disableDownload: false,
isLoading: false,
searchCriteria: {
month: '',
},
pickerOptions0: {
disabledDate (time) {
const oneDay = 3600 * 1000 * 24;
return time.getTime() > (Date.now() + oneDay) || time.getTime() < (Date.now() - oneDay * 30 * 11);
}
},
formRules: {
month: [{
required: true,
message: "please pick month",
trigger: "blur"
}]
}
}`
`
.formStyle{
margin-left: 50px;
}
.searchStyle{
margin-left: 70px;
}
`
My style is very simple. I checked the document and found no operation on label in the official example, so normally adding the label-width should automatically align.But why not me
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.