The height option (if it is <2.0) matches the width of the container. Thus, height:0.5 will have a height that is half the width of the container (w = 2, h = 1).
height:1.5 will result in (w = 2, h = 3)
To maintain responsiveness, you can use max-width rather than width when styling a container.
If the height parameter is set to 2.0 or more, it is interpreted as pixels. Thus, height:2.0 will only be 2px high.
codewaggle
source share