答案 0 :(得分:1)
由于您无法编辑HTML,因此无法正确使用浮动,这将是完美的解决方案。
但是你可以使用绝对定位:
div {
width: 500px;
min-height: 100px; /* image height */
position: relative;
text-align: justify;
}
img {
width:100px;
position: absolute;
top: 0;
right: 0;
}
p:first-child {
max-width: 400px; /* wrapper width - image width */
}