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.
Semantic-UI Header 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. En este artículo, aprenderemos sobre la variante flotante del encabezado. Esta variante se usa para hacer flotar nuestro encabezado hacia la izquierda o la derecha de la pantalla.
Variaciones de encabezado de interfaz de usuario semántica Clases de variantes flotantes:
- left floated: esta clase se usa para hacer flotar el encabezado en el lado izquierdo de la pantalla.
- right floated: esta clase se usa para hacer flotar el encabezado en el lado derecho de la pantalla.
Sintaxis:
<element class="ui right floated header"> ... </element>
El siguiente ejemplo ilustra la variante flotante de variaciones de encabezado de interfaz de usuario semántica:
Ejemplo 1: En este ejemplo, flotaremos el encabezado a la derecha.
HTML
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" /> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <strong> Semantic UI Header Variations Floating </strong> <br><br> </center> <div class="ui clearing segment"> <strong class="ui right floated header"> GeeksforGeeks <sub>Right Floated</sub> </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> </div> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, flotaremos el encabezado a la izquierda.
HTML
<!DOCTYPE html> <html> <head> <link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" /> </head> <body> <center> <h1 style="color:green"> GeeksforGeeks </h1> <strong> Semantic UI Header Variations Floating </strong> <br><br> </center> <div class="ui clearing segment"> <strong class="ui left floated header"> GeeksforGeeks <sub>Right Floated</sub> </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> </div> </body> </html>
Producción:
Referencia: https://semantic-ui.com/elements/header.html#floating
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA