如果下面代码
<p style="height: 100px; overflow: scroll" >
<img src="img" style="height: 200px; />
</p>
请问如何让img总是居中,尤其是img的height比p 的height还大,image还是居中。
因为p的overflow是scroll的所以图片的上部和下部看不见,但是 p里面显示的还是图片的中部。请从css角度思考。
谢谢
黄舟2017-04-17 11:07:24
你這代碼看著總是別扭,仔細看了看第一行的冒號":" 是中文的冒號吧? 還會有第二行的 style 少了個引號? 所以第三行的高亮看著都有問題...
顯示圖片:
<p style="height: 100px; overflow: hidden; width:100px" >
<img src="img" style="height: 200px; width:200px; margin-top: -100px; margin-left: -100px;" />
</p>