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.
由于某种原因,我的 HTML 中的 img 完全不受我的 img CSS 的影响。它应该重新调整大小。我可能做错了什么?
http://jsfiddle.net/AEPtC/
你拼错了profile-picture:
profile-picture
<div id="profile-pictutre"> ^
这是您的小提琴的固定版本:http: //jsfiddle.net/AEPtC/1/
尝试创建一个jsfiddle,以便我们可以看到您的代码。但是你是否设置了图像的宽度/高度内联,例如:<img src="/src.jpg" width="200" height="200">如果这样,CSS 有时会产生不希望的效果。
<img src="/src.jpg" width="200" height="200">
编辑:看起来你有拼写错误?固定的
我认为您只需要设置 img height:auto, max-width:100%,不是吗?
height:auto, max-width:100%
http://jsfiddle.net/AEPtC/7/