tab-size

<< white-space direction >>

Esta propiedad te permite establecer el ancho de las tabulaciones (espacio o tamaño, siendo este (U+0009)). Los valores que puede tener son: un número o un tamaño específico. 

<!DOCTYPE html>
<html lang="es">
     <head>
          <meta charset="UTF-8">
          <title>Aplicando estilos</title>  
          <link rel="stylesheet" href="style.css">        
     </head>
     <body>
          <h1>  El título estará en azul</h1>
          <div id="container">
            <p>Tenemos un nuevo párrafo por aquí</p>
            <p id="destacado">Este párrafo también estará en azul</p>
          </div>
          <pre>
            &#0009;console.log("hola mundo");
          </pre>
     </body>
</html>

<< white-space direction >>