mirror of
https://github.com/svg/svgo.git
synced 2026-01-25 18:41:39 +03:00
25 lines
660 B
Plaintext
25 lines
660 B
Plaintext
Selectors matching two classes should remove both classes from the matched
|
|
element.
|
|
|
|
===
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1570.062" height="2730" viewBox="0 0 415.412 722.312">
|
|
<style>
|
|
.segment.minor {
|
|
stroke-width: 1.5;
|
|
stroke: #15c6aa;
|
|
}
|
|
</style>
|
|
<g transform="translate(200.662 362.87)">
|
|
<path d="M163.502-303.979h3.762" class="segment minor"/>
|
|
</g>
|
|
</svg>
|
|
|
|
@@@
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="1570.062" height="2730" viewBox="0 0 415.412 722.312">
|
|
<g transform="translate(200.662 362.87)">
|
|
<path d="M163.502-303.979h3.762" style="stroke-width:1.5;stroke:#15c6aa"/>
|
|
</g>
|
|
</svg>
|