css圖片寬高相等設置

親測有效。轉載:https://www.cnblogs.com/yesyes/p/6686719.html

<style>
	.image-header{
		position:relative;
		width:100%;
		height:0;
		padding-top:100%;
	}
	.image-header img{
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
	}
</style>
<div class="image-header">
	<img src="demo.jpg">
</div>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章