Semantic UI es un marco de código abierto que utiliza CSS y jQuery para crear excelentes interfaces de usuario. Es lo mismo que un bootstrap para usar y tiene grandes elementos diferentes para usar para hacer que su sitio web se vea más increíble.
El encabezado de interfaz de usuario semántica proporciona un breve resumen del contenido y nos ofrece diferentes variaciones del encabezado, como variantes divididas, bloqueadas, adjuntas, flotantes, alineación de texto, coloreadas e invertidas. Aquí, en este artículo, conoceremos la variante Dividir del encabezado.
Clase de variante de divisor de variaciones de encabezado de interfaz de usuario semántica:
- dividing: esta clase se utiliza para crear un divisor entre dos contenidos.
Sintaxis:
<element class="ui dividing header"> ....... </element >
Ejemplo 1: el siguiente ejemplo ilustra la variante del divisor de variaciones del encabezado de la interfaz de usuario semántica:
HTML
<!DOCTYPE html> <html> <head> <title>Semantic-UI Header Dividing Variations</title> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" /> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <strong> Semantic UI Header Variations Divider </strong> <br><br> <p> With the idea of imparting programming knowledge, Mr. Sandeep Jain, an IIT Roorkee alumnus started a dream, GeeksforGeeks. Whether programming excites you or you feel stifled, wondering how to prepare for interview questions or how to ace data structures and algorithms, GeeksforGeeks is a one-stop solution. </p> <strong class="ui dividing header"> A Computer Science Portal for Geeks </strong> <p> Free Tutorials, Millions of Articles, Live, Online and Classroom Courses, Frequent Coding Competitions, Webinars by Industry Experts, Internship opportunities and Job Opportunities. </p> </center> </body> </html>
Producción:
Ejemplo 2:
HTML
<!DOCTYPE html> <html> <head> <title>Semantic-UI Header Dividing Variations</title> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet"/> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <strong> Semantic UI Header Variations Divider </strong> <br><br> <p> With the idea of imparting programming knowledge, Mr. Sandeep Jain, an IIT Roorkee alumnus started a dream, GeeksforGeeks. Whether programming excites you or you feel stifled, wondering how to prepare for interview questions or how to ace data structures and algorithms, GeeksforGeeks is a one-stop solution. </p> <strong class="ui dividing green header"> A Computer Science Portal for Geeks </strong> <p> Free Tutorials, Millions of Articles, Live, Online and Classroom Courses, Frequent Coding Competitions, Webinars by Industry Experts, Internship opportunities and Job Opportunities. </p> </center> </body> </html>
Producción:
Referencia: https://semantic-ui.com/elements/header.html#dividing
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA