我想通过应用 css 将菜单高度设置为等于窗口高度。如果页面中的元素垂直增加,那么相对于页面长度,菜单高度也应该增加。我已经使用了“height:100%”并且还尝试在样式中使用“height:100vh”,但它不起作用。
有什么帮助吗??
我有以下代码:
import React, { Component } from 'react';
import Menu from 'material-ui/Menu';
import MenuItem from 'material-ui/MenuItem';
import './mystyle.css';
const mainmenu = {
width: '180px',
height: '100%',
};
class MenuView extends Component {
render() {
return (
<div className="dash-menuview">
<Menu style={mainmenu} className="mydashboard">
<MenuItem primaryText="My Name" style={{color:'white'}} href="#/name" onClick={handlers.changeURL}/>
<MenuItem primaryText="Personal Information" style={{color:'white'}} href="#/information" onClick={handlers.changeURL}/>
<MenuItem primaryText="My Address" style={{color:'white'}} href="#/current" onClick={handlers.changeURL}/>
<MenuItem primaryText="My Files" style={{color:'white'}} href="#/files" onClick={handlers.logout}/>
</Menu>
</div>
);
}
}
export default MenuView;
我的样式.css
.dash-menuview {
margin-left: -8.8%;
}
.mydashboard {
background: #545454;
color: #FFFFFF;
text-decoration: none;
color: white;
margin-left: 0%;
font-weight: bold;
}