Files
canti/scratch/test-css.html
T
2026-06-17 01:04:27 +02:00

34 lines
652 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
.chord-segment {
display: inline-flex;
flex-direction: column;
vertical-align: bottom;
margin-right: 0.2em;
border: 1px solid blue;
}
.chord {
font-size: 0.75em;
font-weight: 700;
color: red;
height: 1.2em;
margin-bottom: -0.2em;
border: 1px solid red;
}
.seg-text {
white-space: pre;
border: 1px solid green;
}
</style>
</head>
<body>
<div>
ti amerò come
<span class="chord-segment"><span class="chord">LA</span><span class="seg-text"> </span></span>
<span class="chord-segment"><span class="chord">MI</span><span class="seg-text"></span></span>
</div>
</body>
</html>