Another way is to use a transparent 1x1.png with width: 100%, height: auto in a div and absolutely positioned content within it:
html:
FOO
css:
div {
position: relative;
width: 50%;
}
img {
width: 100%;
height: auto;
}
h1 {
position: absolute;
top: 10px;
left: 10px;
}
Fidle: http://jsfiddle.net/t529bjwc/