如何将图像左下对齐到文本块?

作为这个图像?


这在HTML / CSS中是不可能的。

绝对定位允许像这样放置,但是您应该确保其他内容不与它发生冲突 - 没有任何文字流动。

浮动机制让你四处流动,但只允许在其“锚点”的水平面上放置浮动 - 无定位但左/右。


将以下样式添加到图像中

float: left; 
padding-right:10px;
padding-top:10px;
position:absolute,
bottom: 10px;

你会使用:

float: left; 
position: absolute;
bottom: 0px;
链接地址: http://www.djcxy.com/p/1011.html

上一篇: How to align image left bottom to the text block?

下一篇: cucumber, capybara & selenium works randomly