プレビュー
HTML
<p>
<button type="button" aria-describedby="tip">Measure</button>
<span id="tip" role="tooltip">Keep lines under 70 characters.</span>
</p>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
p {
display: inline-grid;
margin: 0;
justify-items: start;
gap: 0.4rem;
}
button {
padding: 0.55rem 0.9rem;
border: 1px solid var(--ink);
border-radius: 999px;
background: var(--paper);
font: inherit;
}
span {
width: max-content;
max-width: 14rem;
padding: 0.4rem 0.6rem;
border-radius: 0.5rem;
background: var(--ink);
color: var(--on-accent);
font-size: 0.85rem;
}