Hi, I have been working in a caracter sheet for the past couple of weeks and I am having some question with HTML+CSS (I am pretty new to HTML+CSS), so I have a couple a questions: 1) How do I reduce the space between a Label and an Input? (the red space down below) 2) I don't know if it's posibble, but is there a way to save the size of a TextArea change by the user? 3) I have been trying for the past days but don't seem able to do it, I have stats and I want to put them each inside a little label that I made. I don't know how to do it, I have them split in section (show bellow) and I made an individual DIV for each one but can seem to be able to achive what I want (show bellow). HTML: <div class="main"> <!-- LOGO SECTION --> <div class="logo"></div><div class="estadisticas-general"> <div class="estadistica"> <div class="estadisticas-total"> <input type="number" name="attr_fuerza" value="0" title="@{fuerza}" readonly> </div> <div class="estadisticas-nombre"> <button name="roll_fuerza" type="roll" value="&{template:default} {{name=Fuerza}} {{Resultado=[[(@{fuerza}d10!!+@{fuerza_flat})]]}}">Fuerza</button> </div> <div class="estadisticas-base"> <input type="number" name="attr_fuerza_base" value="1" > </div> <div class="estadisticas-fijo"> <input type="number" name="attr_fuerza_fijo" value="0" readonly> </div> <input type="hidden" name="attr_fuerza_talent" value="0" readonly> <input type="hidden" name="attr_fuerza_item" value="0" readonly> <input type="hidden" name="attr_fuerza_buff" value="0" readonly> </div> <div class="estadistica"> <div class="estadisticas-total"> <input type="number" name="attr_f2" value="0" title="@{f2}" readonly> </div> <div class="estadisticas-nombre"> <button name="roll_2" type="roll" value="&{template:default} {{name=Fuerza}} {{Resultado=[[(@{fuerza}d10!!+@{fuerza_flat})]]}}">Destreza</button> </div> <div class="estadisticas-base"> <input type="number" name="attr_fuerza_base" value="1" > </div> <div class="estadisticas-fijo"> <input type="number" name="attr_f2_fijo" value="0" readonly> </div> <input type="hidden" name="attr_f2_talent" value="0" readonly> <input type="hidden" name="attr_f2_item" value="0" readonly> <input type="hidden" name="attr_f2_buff" value="0" readonly> </div> </div> CSS+IMAGE div.sheet-estadisticas-general{ grid-area: stat; display: flex; justify-content:center; align-items: center; flex-flow: column; margin: 0px; padding-top: 0px; } div.sheet-estadisticas-total{ text-align: center; justify-content:center; align-items: center; font-size: 10px; background-image: url(<a href="https://i.imgur.com/cUv7dXx.png" rel="nofollow">https://i.imgur.com/cUv7dXx.png</a>); background-size: 50%; background-repeat: no-repeat; } div.sheet-estadisticas-nombre{ text-align: left; justify-content:left; align-items: left; font-size: 10px; background-image: url(<a href="https://i.imgur.com/evWyeCz.png" rel="nofollow">https://i.imgur.com/evWyeCz.png</a>); background-size: 50%; background-repeat: no-repeat; } div.sheet-estadisticas-base{ text-align: center; justify-content:center; align-items: center; font-size: 50px; background-image: url(<a href="https://i.imgur.com/bgcixrk.png" rel="nofollow">https://i.imgur.com/bgcixrk.png</a>); background-size: 50%; background-repeat: no-repeat; } What i Want: