↧
Answer by Nita for Material-ui horizontal menu
You can use flex as part of your css, which in your menu you can access using the attribute className="myStyle" for styling like so:.myStyle { display: 'flex', flexWrap: 'wrap', justifyContent:...
View ArticleAnswer by Jeff McCloud for Material-ui horizontal menu
Set the CSS className on the Menu that styles its immediate DIV children with "display: inline-block"Working jsFiddle: https://jsfiddle.net/d980vcon/2/in CSS:.horiz-menu > div { display:...
View ArticleMaterial-ui horizontal menu
I'm trying to create a horizontal menu component from material UI but it seems I'm unable to as all the list items are wrapped inside a <div>The docs show a vertical menu list What works is if I...
View Article