在SVG中居中路径而不考虑其在HTML中的大小,可以使用以下方法:
<svg width="100" height="100" viewBox="25 25 50 50">
<path d="M0 0 L50 0 L50 50 L0 50 Z" fill="red" />
</svg>
<style>
.container {
width: 100px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<div class="container">
<svg width="50" height="50">
<path d="M0 0 L50 0 L50 50 L0 50 Z" fill="red" />
</svg>
</div>
以上是两种常用的方法,可以在SVG中居中路径而不考虑其在HTML中的大小。在实际应用中,可以根据具体需求选择适合的方法。
领取专属 10元无门槛券
手把手带您无忧上云