Why when I set div element height with percentage the element doesn't showing up?
Why max-height never showing up? (No matter if it's percentage or vh or px) ?
For example:
<body> <div></div> </body>
div {width:50%; max-height: 100px; background-color: blue;}. Another Example: div {width: 50%; height:20%; background-color:blue;}
Never showing up :( Thanks for help.