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. Utiliza una clase para agregar CSS a los elementos.
Las tablas son una manera fácil de organizar una gran cantidad de datos. Una tabla es una disposición de datos en filas y columnas, o posiblemente en una estructura más compleja. Las tablas se utilizan ampliamente en la comunicación, la investigación y el análisis de datos. Las tablas son útiles para diversas tareas, como presentar información de texto y datos numéricos. Se puede utilizar para comparar dos o más elementos en el diseño de formulario tabular. Las tablas se utilizan para crear bases de datos. Una tabla HTML y una tabla de interfaz de usuario semántica tienen la misma estructura.
En el caso de una tabla de tipo estructurado , está formateada para mostrar datos estructurados complejos.
Clase de tipo estructurado de tabla de interfaz de usuario semántica:
- estructurada: Esta clase define que el tipo de tabla es estructurada.
Sintaxis:
<table class="ui structured table"> <tr> <td></td> ... </tr> ... </table>
Ejemplo 1: este es un ejemplo básico que ilustra el tipo estructurado de tabla creado con la interfaz de usuario semántica.
HTML
<!DOCTYPE html> <html> <head> <title>Semantic UI Table Structured Type</title> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" /> <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"> </script> <script src= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"> </script> </head> <body> <center> <h1 class="ui green header">GeeksforGeeks</h1> <strong>Semantic UI Table Structured Type</strong> </center> <table class="ui celled structured table"> <thead> <tr> <th rowspan="2">Type</th> <th rowspan="2">Name</th> <th rowspan="2">No.of.Questions</th> <th colspan="3">Difficulty</th> </tr> <tr> <th>Easy</th> <th>Medium</th> <th>Hard</th> </tr> </thead> <tbody> <tr> <td>Non-Linear Data Structures</td> <td>Trees</td> <td class="right aligned">2</td> <td class="center aligned"> <i class="large green checkmark icon"></i> </td> <td></td> <td></td> </tr> <tr> <td rowspan="3">Linear Data Structures</td> <td>Arrays</td> <td class="right aligned">52</td> <td class="center aligned"> <i class="large green checkmark icon"></i> </td> <td></td> <td></td> </tr> <tr> <td>Stacks</td> <td class="right aligned">12</td> <td></td> <td class="center aligned"> <i class="large green checkmark icon"></i> </td> <td></td> </tr> <tr> <td>Queues</td> <td class="right aligned">21</td> <td class="center aligned"> <i class="large green checkmark icon"></i> </td> <td></td> <td></td> </tr> </tbody> </table> </body> </html>
Producción:
Ejemplo 2: este es un ejemplo básico que ilustra el tipo estructurado de tabla con diferentes estados creados con la interfaz de usuario semántica.
HTML
<!DOCTYPE html> <html> <head> <title>Semantic UI Table Structured Type</title> <link href= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css" rel="stylesheet" /> <script src="https://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8=" crossorigin="anonymous"> </script> <script src= "https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.js"> </script> </head> <body> <center> <h1 class="ui green header">GeeksforGeeks</h1> <strong>Semantic UI Table Structured Type</strong> </center> <table class="ui celled structured table"> <thead> <tr> <th rowspan="2">Type</th> <th rowspan="2">Name</th> <th rowspan="2">No.of.Questions</th> <th colspan="3">Difficulty</th> </tr> <tr> <th>Easy</th> <th>Medium</th> <th>Hard</th> </tr> </thead> <tbody> <tr> <td>Non-Linear Data Structures</td> <td>Trees</td> <td class="right aligned">2</td> <td class="center aligned active"> <i class="large green checkmark icon"></i> </td> <td class="error"></td> <td class="error"></td> </tr> <tr> <td rowspan="3">Linear Data Structures</td> <td>Arrays</td> <td class="right aligned">52</td> <td class="center aligned active"> <i class="large green checkmark icon"></i> </td> <td class="error"></td> <td class="error"></td> </tr> <tr> <td>Stacks</td> <td class="right aligned">12</td> <td class="error"></td> <td class="center aligned active"> <i class="large green checkmark icon"></i> </td> <td class="error"></td> </tr> <tr> <td>Queues</td> <td class="right aligned">21</td> <td class="center aligned active"> <i class="large green checkmark icon"></i> </td> <td class="error"></td> <td class="error"></td> </tr> </tbody> </table> </body> </html>
Producción:
Referencia: https://semantic-ui.com/collections/table.html#structured
Publicación traducida automáticamente
Artículo escrito por tpraneeth2001 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA