Reputation: 8824
Demo - how to stretch li elements to parent container height, so they fit all in ul with appropriate height? I need smth like that:
li
ul
Upvotes: 0
Views: 2973
Reputation: 2419
Include one line inside the block of stylesheets for li
height: 25%;
Reputation: 2348
ul { display: table;} li { display: table-row;}
Upvotes: 1