Search code examples
cssstretching

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


Solution

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