<div>
3つのサブを持つを実装しようとしています<div>
(画像を参照)
div1 には画像があり、その高さは .css のように固定されています
.image_inside_div1
{
height:6em;
}
.div1
{
float:left; /* so it fits to the image */
}
.div2
{
width:50%; /* not a great solution. How do I fill the rest (remaining from div1) of outerdiv's width? */
}
.div3
{
/*This is my primary question. How do implement div3 ?*/
width:100%;
position: ???
bottom: 0 ???
height: ???
}
ありがとう!