I have a web application that is going to become a app for smartphones . so it must be too Responsive . and now my question :
I have a parent div and 4 Child .I want to get down last one till it make a visual like below with parent's bottom border :
-----( content )-----
[This is the Result I got For an specific Resolution . I want it to be for all Resolution :

should I add 'height' to parent for this or not?
there is a simple code . how can I make it like image I Attached for all Resolutions ?
<style>
#parent{
border-bottom : 2px solid;
}
#child{
pading:10px;
border-radius:30px;
}
</style>
and html like this :
<div id="parent">
<span style="">
Content
</span>
</div>
Do it like this: