How to keep an image centered and responsive?

前端 未结 7 1358
没有蜡笔的小新
没有蜡笔的小新 2021-01-02 18:08

I have an image, centered both, horizontally and vertically

#logo01{
    position:absolute;
    top:50%;
    left:50%;
    margin-top:-146px;  // half of hei         


        
7条回答
  •  遥遥无期
    2021-01-02 18:24

    try this

    http://jsfiddle.net/hAH6u/2/

    #logo01{
        position:absolute;
        top:50%;
        left:50%;   
        cursor:pointer;
        max-width:45%;
        max-height:45%;
        display:table;
    } 
    

提交回复
热议问题