0

私の問題は、2つのdivを並べて配置できないことです。右上隅に日付が表示された白い背景ボックスが必要です。画像は日付と同じ高さにする必要があります。

これが私のコードです:

#boxx {
background-color: white;
width: 768px;
 -moz-box-shadow: 5px 5px 5px #000;
    -webkit-box-shadow: 5px 5px 5px #000;
    box-shadow: 5px 5px 5px #000;
padding-left: 5px;
padding-top: 5px;
padding-bottom: 5px;
padding-right: 5px;
margin-top: 30px;
font-family: Tahoma;
font-size: 10pt;
}
#date{
text-align: right;
color: #d50a0a;
position: relative;
}

#image{
margin-left: 5px;
position: float;
margin-bottom: 5px;
margin-right: 5px;
}

試してみると、画像は常に日付の1行下にあります。どうすればこの問題を解決できますか?

4

1 に答える 1

0

置く代わりに

position:float;

で試してみてください

float:left;

(または必要に応じて)

于 2012-10-11T14:44:37.423 に答える