I am trying to achieve something that I assumed would be quite simple. In the below code, I want to make the parent height 200% of its current height, which is based on its children. The reason for this is that I can then position the children within the parent as I wish. Is there any way to simply double the height of the parent div?
HTML
.parent {
width: 100%;
height: 200% // Does not work
}