内部のテキストが頻繁に変更される 2 つの div があります。2 つの div 内のコンテンツがコンテナー div の 2 つの幅になると、左側の div でテキストを新しい行に折り返す必要があります。
これは私の望ましい結果です:
<html>
<head>
<style type="text/css">
#header {
position:relative;
height: 100px;
width:150PX;
}
#leftdiv {
position: absolute;
float:left;
left:0px;
bottom:0px;
font-size: 10px;
}
#rightdiv {
position:absolute;
float:right;
right:0px;
bottom:0px;
font-size: 10px;
}
</style>
</head>
<body>
<div id="header">
<div id="leftdiv">Content in Left Div</div>
<div id="rightdiv">Content in Right More</div>
</div>
</body>
</html>