Put title/alt attributes into CSS :after { content: image }?

前端 未结 3 1523
情深已故
情深已故 2021-02-14 10:34

I’ve got the following CSS to add a PDF icon to any link that links to a PDF:

a.pdf-link:after { padding-left: 2px; conte         


        
3条回答
  •  难免孤独
    2021-02-14 11:25

    Based on the answer I just did the following with jQuery:

    $(".pdf-link").before("");
    

提交回复
热议问题