Q
背景位置
1
A
回答
1
看到此鏈接我希望這將幫助你:http://jsfiddle.net/9RYph/7/
div {
top: 40px;left: 40px;
background-size:100%;
background:url('http://i.stack.imgur.com/PuAjg.jpg');
width: 50%;
height: 600px;
}
1
您正在使用img
但background-position
財產img
元素不會應用,你需要使用background-image
財產在你的CSS,並需要在這裏設置元素的寬度,所以字符寬度是圍繞100px
和高度說的200px
,不是設置height
和width
爲200px
和100px
分別
<div></div>
div {
height: 200px;
width: 100px;
background-image: url();
background-position: ;
background-repeat: no-repeat;
/* Other styles goes here */
}
1
0
您需要設置背景圖片在#character
ID:
background: url(http://img391.imageshack.us/img391/432/scorpionortholp0.jpg)
然後添加width
和height
性能,以滿足您的需求。
2
試試這個
img{
clip:rect(0px,300px,auto,0px);
position:absolute;
}
相關問題
- 1. 背景位置
- 2. 背景位置
- 3. Fabricjs背景位置
- 4. 背景位置IE9
- 5. ios背景位置
- 6. 多背景位置
- 7. 背景位置iOS
- 8. CSS背景位置
- 9. 背景顏色的背景位置
- 10. 設置背景圖片的位置(即`背景位置x`和`背景位置y`在網頁)
- 11. jquery背景位置動畫?
- 12. CSS背景圖像位置
- 13. jQuery背景圖像位置
- 14. 響應背景CSS位置
- 15. 背景的絕對位置
- 16. css中的背景位置
- 17. 位置背景圖片
- 18. 音頻的背景位置
- 19. 背景顏色位置
- 20. CSS3背景位置轉換
- 21. CSS背景位置座標
- 22. 背景位置:固定
- 23. WKInterfaceController背景圖像位置
- 24. 即8,9身背景位置
- 25. CSS背景位置衝突
- 26. 背景位置值操作
- 27. 切換背景位置TWICE
- 28. 背景Android位置服務
- 29. 背景圖片位置 - wordpress
- 30. 背景位置問題
工作確實。 – Manoj