I want to stretch a DIV-Container inside a div to the height of 100%. The DIV-Container i want to stretch has a image inside via
<img src="http://thisisatestforstack.com/image.png"/>
I also want to center the Image vertically afterwards. I prepared a picture which makes my wishes more clear:
This is my Code right now:
<div id="master">
    <div id="text" style="width: 60%; float: left;">
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.<br/>
        This is an example.
    </div>
    <div id="image" style="width: 40%; float: left;">
        <img src="http://thisisatestforstack.com/image.png"/>
    </div>
</div>

 
     
    