svg background image position is always centered in internet explorer, despite background-position: left center;

前端 未结 8 1951
醉话见心
醉话见心 2020-12-04 08:14

I\'m using a SVG logo as a background image and I can\'t seem to get it to align correctly to the left in Internet Explorer (edit: and Safari).

The containe

8条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-04 09:18

    It turns out the following line can turn your svg into a non-centered element:

    display: inline-block;
    

    Still not the most ideal solution but it works.

提交回复
热议问题