【发布时间】:2018-06-16 07:31:23
【问题描述】:
如何对齐 Material UI 输入文本的文本?以下似乎不起作用。我使用的是 1.x 版
import {Input} from 'material-ui';
//didn't work
<Input
className="max-w-128 inline-block"
style = {{textAlign: 'center'}}
id="input-quantity"
inputStyle={{ textAlign: 'center' }}
//tried hintStyle as suggested in a bug
hintStyle={{ width: '600px', textAlign: 'center' }}
value={this.state.currentRecord.quantity}
onChange={this.handleCurrentRecordTextChange('quantity')}
/>
【问题讨论】:
-
有可能吗?找不到任何有关此的材料。
标签: css reactjs material-ui