Centering an image that is in an anchor tag

前端 未结 5 1824
迷失自我
迷失自我 2021-01-23 17:50

I have an image in an anchor tag, and I need to center it.

I have managed to do so using this technique that I just came across messing about in the DOM inspector: http:

5条回答
  •  醉话见心
    2021-01-23 18:26

    It will work out for you..

    .center
    {
    width: 100%;
    display:block
    text-align: center;
    }
    

提交回复
热议问题