【发布时间】:2018-01-14 07:38:10
【问题描述】:
我们怎样才能像muicss's Left/Right divider component一样为AppBar设置垂直分隔线?
仅仅用height: 100% 插入div 元素是行不通的。
<AppBar position="static" color="default">
<Toolbar>
<Typography type="title" color="inherit">
Title
</Typography>
<div style={{
border: 'solid #ff0000',
height: '100%'
}}>
</div>
<Typography type="title" color="inherit">
Title 2
</Typography>
</Toolbar>
</AppBar>
这是实时示例代码。 https://codesandbox.io/s/54070o6v2x
谢谢。
我的环境
| Tech | Version |
|--------------|---------|
| Material-UI | next |
| React | 16.2.0 |
| Browser | Chrome 63.0.3239.84 |
【问题讨论】:
标签: reactjs material-ui