Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Set height to auto plus 10%

Tags:

css

height

I am making a simple box and inner box. The outer box is white and the inner box is purple. The inner box width is static (95%, i understand this is not necessarily static, but in the context of the height you'll understand) but the height is set to auto to reflect the height of the content text. The trick I'm facing is having a margin on the bottom. It is easy to set the sides. The outer box width is set to 97%, and the inner box width is set to 95%. There is a 10% margin on the top. But since the inner box height is set to auto, the outer box ends vertically where the inner box does. Is there any way to have the height of the outer box set to auto + 10%? Or something similar? Thanks!

like image 419
eatonphil Avatar asked Aug 19 '12 21:08

eatonphil


1 Answers

Billy Moat's answer was perfect! I used padding-bottom to get it to work.

like image 122
eatonphil Avatar answered Sep 23 '22 00:09

eatonphil