aspect-ratio
身高百分比不能很好地结合在一起。如果你想把按钮放在一行文本旁边,最好使用
1lh
作为一个高度
.inject-span {
display: inline-grid;
grid-template-columns: max-content fit-content(1ch);
gap: 0.5ch;
}
.inject-span button {
padding: 0;
aspect-ratio: 1;
height: 1lh;
font: inherit;
}
<div>John Doe <span class="inject-span"
><span>Pablo Picasso</span
><button type="button" title="Open information">
<svg viewBox="0 0 24 24" width="100%" height="auto">
<path
style="fill: currentColor; fill-opacity: 1"
d="m14.05 13.236 6.498 9.606L18.91 24l-6.905-9.47L5.1 24l-1.637-1.158 6.498-9.606L.553 9.22l.615-1.69 9.596 3.463L11.087 0h1.826l.323 10.993 9.596-3.462.615 1.69-9.387 4.015z"
></path>
</svg></button
></span>, Johnny FooBar</div>