绝对中心(垂直和水平)图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了绝对中心(垂直和水平)图像相关的知识,希望对你有一定的参考价值。

From css-tricks.com
  1. /*CSS background-image Technique*/
  2. html {
  3. width:100%;
  4. height:100%;
  5. background:url(logo.png) center center no-repeat;
  6. }
  7.  
  8. /*CSS + Inline Image Technique*/
  9. img {
  10. position: absolute;
  11. top: 50%;
  12. left: 50%;
  13. width: 500px;
  14. height: 500px;
  15. margin-top: -250px; /* Half the height */
  16. margin-left: -250px; /* Half the width */
  17. }

以上是关于绝对中心(垂直和水平)图像的主要内容,如果未能解决你的问题,请参考以下文章

CSS 绝对中心(垂直和水平)图像| CSS-技巧

绝对中心(垂直和水平)图像

css 背景绝对中心水平和垂直

图像中心垂直和水平对齐[重复]

图像 <a> 垂直和水平对齐中心并在两者中都使用 % 调整大小

如何左对齐和垂直对齐标题中的图像并将文本水平保持在div的中心[重复]