En este artículo, agregaremos un solo salto de línea usando la etiqueta <br> . Se utiliza para dar el salto de una sola línea. Es la etiqueta vacía, por lo que no contiene la etiqueta final.
Sintaxis:
<br>
Ejemplo 1: este ejemplo usa la etiqueta <br> para romper la línea.
<!DOCTYPE html> <html> <head> <title> How to defines a single line break? </title> <style> body { text-align: center; } h1 { color: green; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2> HTML5: How to defines a single line break? </h2> <!-- br tag is used here --> <p> GeeksforGeeks: <br> Computer science portal </p> </body> </html>
Producción:
Ejemplo 2: este ejemplo usa la clase br para romper la línea.
<!DOCTYPE html> <html> <head> <title> How to defines a single line break? </title> <style type="text/css"> .br { display: block; margin-bottom: 0em; } .brsmall { display: block; margin-bottom: -.2em; } .brxsmall { display: block; margin-bottom: -.4em; } </style> </head> <body> <h2>GeeksForGeeks</h2> <h2> HTML5: How to defines a single line break? </h2> <h4> This page shows different break height between </h4> <p>Hi User <span class="br"></span> Welcome to <span class="brsmall"></span> Geeks for geeks. <span class="brxsmall"></span> Hope you have enjoyed your stay. </p> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA