绝对中心(垂直和水平)图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绝对中心(垂直和水平)图像相关的知识,希望对你有一定的参考价值。
From css-tricks.com
/*CSS background-image Technique*/ html { width:100%; height:100%; background:url(logo.png) center center no-repeat; } /*CSS + Inline Image Technique*/ img { position: absolute; top: 50%; left: 50%; width: 500px; height: 500px; margin-top: -250px; /* Half the height */ margin-left: -250px; /* Half the width */ }
以上是关于绝对中心(垂直和水平)图像的主要内容,如果未能解决你的问题,请参考以下文章