0

imgの上部を揃えてpromodivの要素をコピーする方法がわからないようです。何かご意見は?これはクロムでは正しく整列しません。

私は他の多くの質問を調べましたが、それを理解できないようです。

一日の終わりに、divの左上にパンチアウトボックスを配置できるようにしたいのですが、テキストのオーバーフローが画像に巻き込まれないようにしたいのです。

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style type="text/css">
.promo {
    float: left;
    width: 200px;
    background-color: pink;
}
.promo img {
float: left;
width: 48px;
height: 48px;
background-color: orange;
}
.copy {
    float: left;
    width: 152px;
    background-color: yellow;
}
</style>
</head>
<body>
<div class="promo"> <img src="" alt="" />
  <p class="copy">This is the content. I have a lot of contentfff this it s a fodis sod sod sfns s ndosn</p>
  <div style="clear:both;"></div>
</div>
<div class="promo"> <img src="" alt=""/>
  <p class="copy">This is the content. I have a lot of contentfff this it s a fodis sod sod sfns s ndosn</p>
  <div style="clear:both;"></div>
</div>
<div class="promo"> <img src="" alt=""/>
  <p class="copy">This is the content. I have a lot of contentfff this it s a fodis sod sod sfns s ndosn</p>
  <div style="clear:both;"></div>
</div>
</body>
</html>
4

1 に答える 1

0

これはあなたが話していることですか: http://jsfiddle.net/NuVww/21/ ?

于 2012-05-20T04:07:35.207 に答える