Centering an image within a div

前端 未结 6 2028
予麋鹿
予麋鹿 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 12:03

    Either

    banner {
         height:100px;
         text-align:center;
         width:960px;
         padding-bottom:10px;}
    

    or if the img is of specific size then

    banner img {
             display:block;
             width: px;
             border:none;
             margin:0 auto;
             }
    

    will work ..

提交回复
热议问题