How to keep an image centered and responsive?

前端 未结 7 1204
没有蜡笔的小新
没有蜡笔的小新 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:38

    Using table display:

    CSS

    img {
        max-width: 100%;
        height: auto;
        display: table;
        margin: 0 auto;
    }
    

    http://jsfiddle.net/herbowicz/a5kumqtv/5/

    0 讨论(0)
提交回复
热议问题