Embedding HTML in embedded SVG in HTML?

前端 未结 4 748
情歌与酒
情歌与酒 2021-01-05 04:50

It\'s allowed to embed SVG in HTML...



    
        Hmmm....
             


        
4条回答
  •  星月不相逢
    2021-01-05 05:01

    If you want the html5 parser to ignore the svg and everything inside it () you could just put the svg into an comment; to let the svg parser ignore the html-note use cdata:

    
      <!--  
        
       -->  
    
    

    http://www.w3schools.com/xml/xml_cdata.asp

    try something like this...

提交回复
热议问题