我正试图右对齐的占位符文本在Mui v5。sx不能工作,我不知道如何使用'styled' x1c 0d1x在我尝试了inputProps={{ style:{ textAlign:'right' }}}它被设置为元素但未在ui中更改(占位符文本大多数位于textField框的右侧)
ulmd4ohb1#
你可以用inputProps来实现:
inputProps
<TextField placeholder="your placeholder" inputProps={{ sx: { textAlign: "right", "&::placeholder": { textAlign: "right", }, }, }} />
1条答案
按热度按时间ulmd4ohb1#
你可以用
inputProps
来实现: