-3
A
回答
1
本身不會縮放圖像,如果你不把它應用width
或height
屬性/樣式。
調整容器大小,應用height
和width
風格就可以了,還有overflow:hidden
。
例如:
<div class="image-container">
<img src="http://example.com/some-image.png" alt="example"/>
</div>
和css:
.image-container {
width: 300px;
height: 200px;
overflow: hidden;
}
進一步,如果要調整圖像的位置,應用position: relative
和top
bottom
left
right
它:
.image-container img {
position: relative;
left: 20px;
top: -50px;
}
+0
太棒了!它以這種方式工作。非常感謝! – user1861212
相關問題
- 1. 使用CSS/Javascript修剪圖像空白?
- 2. 使用PHP修剪圖像
- 3. 使用jquery修剪圖像
- 4. 使用css裁剪圖像
- 5. 如何修剪CSS中的圖像?
- 6. 使用CSS修剪文本
- 7. 用PHPThumb修剪圖像
- 8. 無法用剪輯/ ImageMagick修剪圖像
- 9. 如何使用Imager修剪圖像
- 10. 使用CSS剪影一個PNG圖像
- 11. 使用CSS裁剪背景圖像
- 12. 在php中修剪圖像
- 13. 圖像修剪問題
- 14. 修剪圖像後圖像模糊?
- 15. CSS剪輯 - 雪碧圖像
- 16. 在CSS中裁剪圖像
- 17. CSS - 裁剪圖像顯示
- 18. 修剪一個字符串使用css
- 19. 用PHP或Javascript修剪圖像
- 20. 如何用PHP修剪圖像?
- 21. 用PIL修剪掃描圖像?
- 22. 如何用css裁剪圖像
- 23. Android如何裁剪圖像使用xml像css
- 24. 使用Java裁剪圖像
- 25. 使用openCV裁剪圖像
- 26. 使用php裁剪圖像
- 27. 使用ImageScience裁剪圖像
- 28. 裁剪圖像使用jQuery
- 29. 使用c裁剪圖像#
- 30. 使用CGImageCreateWithImageInRect裁剪圖像
我想你是在談論ima ge大小,而不是html'
我確實在談論圖像大小! – user1861212
這太板了。你能更具體地說明你想做什麼嗎? – Passerby