HTML inside SVG

后端 未结 4 2011
梦如初夏
梦如初夏 2021-01-05 10:52

I would like to add some HTML markup in an SVG drawing.

As far as I know, this is not possible with SVG.

The image gets di

4条回答
  •  误落风尘
    2021-01-05 11:15

    There you go!

    .wrapper{
        position: relative;
        width: 100px;
        height: 100px;
    }
    .text{
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        color: white;
    }
    
    
    
    
    TEXT

提交回复
热议问题