Foundation CSS es un marco front-end receptivo y de código abierto creado por la fundación ZURB en septiembre de 2011, que facilita el diseño de hermosos sitios web, aplicaciones y correos electrónicos receptivos para que se vean increíbles y puedan ser accesibles para cualquier dispositivo. Es utilizado por muchas empresas como Facebook, eBay, Mozilla, Adobe e incluso Disney. El marco se basa en un arranque similar a Saas. Es más sofisticado, flexible y fácilmente personalizable. También viene con CLI, por lo que es fácil de usar con paquetes de módulos. Ofrece la herramienta Fastclick.js para una renderización más rápida en dispositivos móviles.
Foundation CSS Base Typography se usa para agregar los estilos predeterminados para hacer que los elementos sean más atractivos. La tipografía base facilita la vida al proporcionar elementos y clases simples y atractivos para construir una página web atractiva.
Foundation CSS Base Typography Divider se usa para agregar las rupturas entre los elementos. Usaremos la etiqueta <hr> para dividir el párrafo u otros elementos. También podemos usar la etiqueta <section> para definir la sección de los elementos.
Foundation CSS Base Tipografía Divisor Etiqueta:
- <hr>: Esta etiqueta se usa para agregar las rupturas entre los elementos.
Sintaxis:
<hr>
Ejemplo 1: En este ejemplo, describiremos el uso de Foundation CSS Base Typography Divider.
HTML
<!DOCTYPE html> <html lang="en"> <head> <title> Foundation CSS Base Typography Dividers </title> <!-- Compressed CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/css/foundation.min.css"> <!-- Compressed JavaScript --> <script src= "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"> </script> <script src= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/js/foundation.min.js"> </script> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> Foundation CSS Base Typography Dividers </h2> <hr> <h3>GeeksforGeeks</h3> <p> A Computer Science portal for geeks. It contains well written, well thought and well-explained computer science and programming articles... </p> <hr> <script> $(document).foundation(); </script> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, describiremos el uso de Foundation CSS Base Typography Divider.
HTML
<!DOCTYPE html> <html lang="en"> <head> <title> Foundation CSS Base Typography Dividers </title> <!-- Compressed CSS --> <link rel="stylesheet" href= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/css/foundation.min.css"> <!-- Compressed JavaScript --> <script src= "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"> </script> <script src= "https://cdn.jsdelivr.net/npm/foundation-sites@6.7.4/dist/js/foundation.min.js"> </script> </head> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> Foundation CSS Base Typography Dividers </h2> <div class="callout success"> <h1><a href="https://www.geeksforgeeks.org/"> GeeksforGeeks </a></h1> <p> A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles... </p> <hr> <h3><a href="https://www.geeksforgeeks.org/html/"> HTML </a></h3> <p> HTML stands for HyperText Markup Language. It is used to design web pages using a markup language. It is the combination of Hypertext and Markup language. </p> <hr> <h5><a href="https://www.geeksforgeeks.org/javascript/"> JavaScript </a></h5> <p> JavaScript is the world most popular lightweight, interpreted compiled programming language. It is also known as scripting language for web pages. </p> </div> <script> $(document).foundation(); </script> </body> </html>
Producción:
Referencia: https://get.foundation/sites/docs/typography-base.html#dividers
Publicación traducida automáticamente
Artículo escrito por AshokJaiswal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA