Alex Ivasyuv
Alex Ivasyuv

Reputation: 8824

CSS stretch elements to fit container height

Demo - how to stretch li elements to parent container height, so they fit all in ul with appropriate height? I need smth like that:

expected result

Upvotes: 0

Views: 2973

Answers (2)

RAM
RAM

Reputation: 2419

Include one line inside the block of stylesheets for li

height: 25%;

Upvotes: 0

Caelea
Caelea

Reputation: 2348

ul { display: table;}
li { display: table-row;}

Upvotes: 1

Related Questions