One last question I swear. I wanted to make it so the lines that says: Cuerpo "X", Mente "X",
Espiritu "X" are on the center on the top of the container, but the
Stats (Fuerza, Destreza and Constitucion) retain their flexible center
position. This is the relevant code: HTML: <div class="cuerpo"> <div class="cue"><h2>Cuerpo</h2> <input type="number" name="attr_cuerpo" value="0" title="@{cuerpo}" readonly></div> <div class="estadisticas-cuerpo"> <button class="buttonstyle" name="roll_fuerza" type="roll" value="&{template:default} {{name=Fuerza}} {{Resultado=[[(@{fuerza}d10!!+@{fuerza_flat})]]}}">Fuerza</button> <input class="nmr1" type="number" name="attr_fuerza_base" value="1" > <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> <input type="hidden" name="attr_fuerza_fijo" value="0" readonly> <input class="nmr2" type="number" name="attr_fuerza" value="0" title="@{fuerza}" readonly> </div> <div class="estadisticas-cuerpo"> <button class="buttonstyle" name="roll_destreza" type="roll" value="&{template:default} {{name=Destreza}} {{Resultado=[[(@{destreza}d10!!+@{destreza_flat})]]}}">Destreza</button> <input class="nmr1" type="number" name="attr_destreza_base" value="1" > <input type="hidden" name="attr_destreza_talent" value="0" readonly> <input type="hidden" name="attr_destreza_item" value="0" readonly> <input type="hidden" name="attr_destreza_buff" value="0" readonly> <input type="hidden" name="attr_destreza_fijo" value="0" readonly> <input class="nmr2" type="number" name="attr_destreza" value="0" title="@{destreza}" readonly> </div> <div class="estadisticas-cuerpo"> <button class="buttonstyle" name="roll_constitucion" type="roll" value="&{template:default} {{name=Constitución}} {{Resultado=[[(@{constitucion}d10!!+@{constitucion_flat})]]}}">Constitución</button> <input class="nmr1" type="number" name="attr_constitucion_base" value="1" > <input type="hidden" name="attr_constitucion_talent" value="0" readonly> <input type="hidden" name="attr_constitucion_item" value="0" readonly> <input type="hidden" name="attr_constitucion_buff" value="0" readonly> <input type="hidden" name="attr_constitucion_fijo" value="0" readonly> <input class="nmr2" type="number" name="attr_constitucion" value="0" title="@{constitucion}" readonly> </div> </div> CSS: .sheet-cuerpo { grid-area: cuerpo; display: flex; flex: auto; flex-flow: column nowrap; justify-content: space-evenly; font-size: 15px; border: 10px solid transparent; border-image: url(<a href="https://i.imgur.com/xq0JxTz.png" rel="nofollow">https://i.imgur.com/xq0JxTz.png</a>) 30 stretch; } div.sheet-estadisticas-cuerpo, .sheet-estadisticas-mente, .sheet-estadisticas-espiritu, .sheet-habilidades-proezas, .sheet-habilidades-conocimientos, .sheet-habilidades-sociales { display: inline-block; } input.sheet-nmr1 { align-items: center; position: relative; background: white; border-radius: 8px; font-size: 17px; border: 1px solid black; } input.sheet-nmr2 { align-items: center; position: relative; border-width: 50%; background: whitesmoke; border-radius: 50%; font-size: 17px; border: 1px solid black; font-weight: bolder; } div.sheet-cue, .sheet-men, .sheet-esp { padding: 0px; margin: 0px; font-size: 23px; font-weight: bolder; text-align: center; } div.sheet-cue input, .sheet-men input, .sheet-esp input { border: 1px solid black; }