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

后端 未结 25 2154
借酒劲吻你
借酒劲吻你 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:04

    Some data I would leave in HTML, but it is better to define the src in CSS:

    
    
    .logo {
        content:url('../images/logo.png');
    }
    

提交回复
热议问题