I currently have this:
I want to put the icon div at the end of the text, but since it's a "block" I can't make it work.
Desired output:
code segment:
* {
font-family: Arial, 'sans-serif'
}
.test {
display: flex;
}
.info {
font-family: 'monospace';
background: black;
width: 18px;
height: 18px;
aspect-ratio: 1;
text-align: center;
border-radius: 50%;
color: white;
}
<div class="test">
Donec rutrum congue leo eget malesuada. Donec sollicitudin molestie malesuada. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
<div class="info">i</div>
</div>
display: flex(.test).info) toinline-blockand usedisplay: inline-block* { font-family: Arial, 'sans-serif' } .info { display: inline-block; font-family: 'monospace'; background: black; width: 18px; height: 18px; aspect-ratio: 1; text-align: center; border-radius: 50%; color: white; }