How to keep an image centered and responsive?

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

    Try with below css for the container for the image.

    CSS:

    width: 100%; text-align: center; margin-top:50%
    

提交回复
热议问题