css – 在页面中央显示图像

前端之家收集整理的这篇文章主要介绍了css – 在页面中央显示图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个图像 – 加载图像.

我希望该图像显示页面的中心.
我怎样才能做到这一点?

我写的代码是:

img.loading
    {
        position:absolute;
        left:0px;
        top:0px;
        z-index:1;
    }

如何使此图像始终显示页面中央?

解决方法

发现这个: How to Center an Image Perfectly in CSS,可能有帮助.
#img
{
    position:absolute;
    width:592px; /*image width */
    height:512px; /*image height */
    left:50%; 
    top:50%;
    margin-left:-296px; /*image width/2 */
    margin-top:-256px; /*image height/2 */
}
原文链接:https://www.f2er.com/css/217783.html

猜你在找的CSS相关文章