• 12 Posts
  • 12 Comments
Joined 7 months ago
cake
Cake day: April 10th, 2024

help-circle


















  • SpongeB0BOPtoCSSHow remove vertical gap between characters ?
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    1
    ·
    edit-2
    4 months ago

    ok I’ve found a work around

    <style>
    .FlexColumn {display: flex;flex-flow: column nowrap }
    .FlexColumn > div {display: inline-block; margin: -4px 0}
    </style>
    
    <div class="FlexColumn">
    	<div>X</div>
    	<div>X</div>
    	<div>X</div>
    	<div>X</div>
    	<div>X</div>
    </div>
    

    But if someone have something more proper, I’m all ears.