1. 程式人生 > >vue中動態繫結背景圖, 圖片水平垂直居中

vue中動態繫結背景圖, 圖片水平垂直居中

vue中動態繫結背景圖,並且使寬高不等的圖片水平垂直居中

外層父元素固定寬高,讓圖片垂直居中的方法

<div style="width:200px;height:200px;">
	<div :style="{backgroundImage: 'url(' + item.image + ')', backgroundSize:'contain',backgroundRepeat:'no-repeat',backgroundPosition:'center center'}"></div>
</div>

效果:
1.圖片height>width
在這裡插入圖片描述


2.圖片width>height
在這裡插入圖片描述