一、svg的四种使用方式

一、svg的四种使用方式

1.在浏览器中直接打开svg格式的图片

2.在html使用标签使用

原始大小

50 x 50

400 x 400

3.直接在html中使用svg标签


                
                
                
                
                
                
                
                
                

4.作为css背景


  #bg {
                width: 400px;
                height: 400px;
                background: white url(simple.svg) repeat;
                box-shadow: rgba(0,0,0,.5) 2px 3px 10px;
                border-radius: 10px;
            }

你可能感兴趣的:(svg)