Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如果我想将图像包裹另一个对象,可能吗?
<img src='pic.png'> <div id='block'> <p>Somebody </div> </img>
我知道我应该只使用divand background-image 但我想使用该属性auto
div
auto
img{width:50%; height:auto;}
如果我使用div,使用 auto 将不起作用,因为它不知道背景图像大小并且不会根据图像比例方面调整 div。
img它是一个内联标签,所以它不应该有后代元素。
img
IMG 元素将图像嵌入到当前文档中元素定义的位置。IMG 元素没有内容;它通常被 src 属性指定的图像内联替换,但左对齐或右对齐的图像除外,它们是“浮动”的。
资源