Centering an image within a div

前端 未结 6 2036
予麋鹿
予麋鹿 2020-12-01 11:25

I have already set the border of an image within a div to be none. I now want to center that image within its containing div. I have tried using the mar

6条回答
  •  没有蜡笔的小新
    2020-12-01 11:47

    Try setting the image’s display property to block:

    banner {
        height: 100px;
        width: 960px;
        padding-bottom: 10px;
    }
    
    banner img {
        border: none;
        display: block;
        margin: 0 auto;
    }
    

提交回复
热议问题