Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!-- titulo h1 -->
<h1>Texto de prueba. visita la web https://juanmcastro.es</h1>

<!-- titulo h2 -->
<h2>Texto de prueba. visita la web https://juanmcastro.es</h2>

<!-- titulo h3 -->
<h3>Texto de prueba. visita la web https://juanmcastro.es</h3>

<!-- Parrafo -->
<p>Lorem fistrum ese que llega está la cosa muy malar por la gloria de mi madre quietooor torpedo hasta luego Lucas ese
  pedazo de. Qué dise usteer ese hombree ese que llega llevame al sircoo ese pedazo de. Me cago en tus muelas tiene
  musho peligro a wan ese pedazo de. Apetecan a wan diodeno de la pradera ahorarr. Condemor qué dise usteer la caidita
  se calle ustée mamaar me cago en tus muelas. Jarl llevame al sircoo ese pedazo de benemeritaar pupita de la pradera
  pupita apetecan. A peich hasta luego Lucas torpedo ahorarr a wan tiene musho peligro la caidita por la gloria de mi
  madre la caidita pecador.</p>

<!-- Caja -->
<div>Texto de prueba. visita la web https://juanmcastro.es</div>

<!-- tabla -->
<table>
  <thead>
    <tr>
      <!-- Barra de título de la tabla -->
      <th>Texto de prueba. visita la web https://juanmcastro.es</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <!-- Celdas dentro de una tabla -->
      <td>Texto de prueba. visita la web https://juanmcastro.es</td>
    </tr>
  </tbody>
</table>
              
            
!

CSS

              
                /* centramos el titulo h1 */
h1 {
  text-align: center;
}

/* Mostraemos el titulo h2 a la derecha */
h2 {
  text-align: right;
}

/* mostramos el titulo h3 a la ziquierda */
h3 {
  text-align: left;
}

/* justificamos el texto del parrafo */
p {
  text-align: justify;
}

/* la caja la vamos a centrar */
div {
  text-align: center;
}

/* para poder ver bien el resultado en la tabla vamos a darle tambien algo de formato a la misma */

table {
  width: 600px; /* Ajustamos el ancho a 600 px */
  border: 1px solid #000; /* Borde sólido y negro de 1 pixel de grosor */
  background-color: #fff; /* Mostramos el fondo de la tabla blanco */
  margin: auto; /* Centramos la tabla en el centro de la pantalla */
  margin-top: 60px; /* le damos margen superior para que se vea mejor */
}

th {
  height: 45px; /* Ajustamos la altura de la celda de titulo a 45 Píxeles */
  border-bottom: 1px dashed #ccc; /* Borde inferior del titulo de la tabla punteado y gris con un grosor de 1 px */
  text-align: center; /* Centramos el texto del título de la tabla */
}

td {
  height: 35px; /* Ajustamos la altura de la celda del cuerpo de la tabla a 35 px */
  text-align: left; /* Alineamos el texto de la celda a la izquierda */
  padding-left: 10px; /* le damos un padding de 10 px a la izquierda para que no se vea el texto pegado al borde */
}

              
            
!

JS

              
                
              
            
!
999px

Console