I have the following Divs:
3条回答 没有蜡笔的小新 (楼主) 2021-01-20 02:25 two ways: first: add float:left to your .custimage second: instead of float, add display:inline-block to your .custimage. The second one does not work in older Browsers, but is way more cleaner than let all float around. 0 讨论(0) 查看其它3个回答 发布评论: 提交评论 加载中... 验证码 看不清? 提交回复
two ways:
first: add float:left to your .custimage
float:left
second: instead of float, add display:inline-block to your .custimage.
display:inline-block
The second one does not work in older Browsers, but is way more cleaner than let all float around.