绝对中心图像

Posted

tags:

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

  1. CSS background-image Technique:
  2.  
  3. width:100%;
  4. height:100%;
  5. background:url(logo.png) center center no-repeat;
  6. }
  7.  
  8. CSS + Inline Image Technique:
  9.  
  10. img {
  11. position: absolute;
  12. top: 50%;
  13. left: 50%;
  14. width: 500px;
  15. height: 500px;
  16. margin-top: -250px; /* Half the height */
  17. margin-left: -250px; /* Half the width */
  18. }
  19.  
  20. Table technique:
  21.  
  22. html, body, #wrapper {
  23. height:100%;
  24. width: 100%;
  25. margin: 0;
  26. padding: 0;
  27. border: 0;
  28. }
  29. #wrapper td {
  30. vertical-align: middle;
  31. text-align: center;
  32. }
  33.  
  34. <html>
  35. <body>
  36. <table id="wrapper">
  37. <tr>
  38. <td><img src="logo.png" alt="" /></td>
  39. </tr>
  40. </table>
  41. </body>
  42. </html>

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

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

绝对中心图像

绝对中心图像

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

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

在不使用绝对位置、顶部和左侧的情况下将按钮置于图像中心的替代方法