Comment à l'échelle SVG chemin

J'ai essayé à l'échelle de la svg chemin comme élément. Mais la généralisation de fonctionne bien pour l'élément div ne fonctionne pas pour le svg élément de chemin. J'ai joint mon code ci-dessous. Toute suggestion?

CSS:

<style>
    .two {
        transition: all 2s ease-in-out 0.5s;
        -webkit-transition: all 2s ease-in-out 0.5s;
    }
    
    #scale {
        height: 150px;
        width: 100px;
        text-align: center;
        margin: 0 auto;
    }
    
    #scale {
        border: 1px blue solid;
    }
    
    .grow:hover {
        transform: scale(2.0);
        -ms-transform: scale(2.0);
        -webkit-transform: scale(2.0);
    }
</style>

HTML:

<body>
    <svg width="1350" height="900">
        <path d="M 673 248.625 A 67.875 67.875 0 0 1 740.1841400272543 326.159552463664 L 673 316.5 A 0 0 1 0 0 673 316.5 z" id="scale" class="two grow"></path>
    </svg>
</body>

InformationsquelleAutor Sanjith | 2016-12-22