Is it possible to set the equivalent of a src attribute of an img tag in CSS?

后端 未结 25 2150
借酒劲吻你
借酒劲吻你 2020-11-22 09:30

Is it possible to set the src attribute value in CSS? At present, what I am doing is:


相关标签:
25条回答
  • 2020-11-22 10:23

    Just use HTML5 :)

    <picture>
        <source srcset="smaller.jpg" media="(max-width: 768px)">
        <source srcset="default.jpg">
        <img srcset="default.jpg" alt="My default image">
    </picture>
    
    0 讨论(0)
提交回复
热议问题