-webkit-text-fill-color: transparent; not working in Safari 7.1.7

后端 未结 5 1607
醉酒成梦
醉酒成梦 2021-01-19 03:13

I have an ul with several li.

I use this id on the ul.

#list {
margin-right: auto;
margin-left: auto;
width:500px;
color:black;
background: -webkit-l         


        
5条回答
  •  日久生厌
    2021-01-19 03:17

    I had this same issue. Turns out it was due to the display property. For whatever reason, Safari needs the display set to "inline" or "inline-block", but not "inline-flex".

    So for me this meant changing From: display: flex; To: display: inline;

提交回复
热议问题