turning an image into css

前端 未结 8 1855
一生所求
一生所求 2021-01-16 03:59

I have this image (attached). I am not a designer but I do not want to use the image in my app. I heard you can come very close to an image using css. Can someone help me wi

8条回答
  •  耶瑟儿~
    2021-01-16 04:57

    If all you want to do is avoid linking to an external image file you could embed the image in your css or html directly.

    Here's an example:

    
    
    
       CSS Image Data Example
       
    
    
       

    Look, Ma, no external links!

     

    In this case I used the image data URL for the background-image css property, but you could also use the same URL for the src attribute of an tag.

提交回复
热议问题