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 la variación del ancho de columna , podemos especificar el ancho de las columnas individuales de forma independiente.
Clase de variación de ancho de columna de tabla de IU semántica:
- ancho: esta clase nos ayuda a establecer el ancho entre columnas individuales.
Sintaxis:
<table class="ui number* wide table"> <tr> <td></td> ... </tr> ... </table>
Nota: El número* puede ser cualquier cosa dependiendo del ancho que desee.
Ejemplo 1: este es un ejemplo básico que ilustra la diferencia entre una tabla normal y una variación del ancho de columna de la tabla realizada con la interfaz de usuario semántica.
HTML
<!DOCTYPE html> <html> <head> <title>Semantic UI Table Column Width Variation</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 Column Width Variation</strong> </center> <b>Normal Semantic UI Table</b> <table class="ui table"> <thead> <tr> <th>Name</th> <th>Date Joined</th> <th>E-mail</th> <th>Called</th> </tr> </thead> <tbody> <tr> <td>John Lilki</td> <td>September 14, 2013</td> <td>jhlilk22@yahoo.com</td> <td>No</td> </tr> <tr> <td>Jamie Harington</td> <td>January 11, 2014</td> <td>jamieharingonton@yahoo.com</td> <td>Yes</td> </tr> </tbody> </table> <b>Column Width Variation Table</b> <table class="ui table"> <thead> <tr> <th class="two wide">Name</th> <th class="three wide">Date Joined</th> <th class="four wide">E-mail</th> <th>Called</th> </tr> </thead> <tbody> <tr> <td>John Lilki</td> <td>September 14, 2013</td> <td>jhlilk22@yahoo.com</td> <td>No</td> </tr> <tr> <td>Jamie Harington</td> <td>January 11, 2014</td> <td>jamieharingonton@yahoo.com</td> <td>Yes</td> </tr> </tbody> </table> </body> </html>
Producción:
Ejemplo 2: este es un ejemplo básico que ilustra la variación del ancho de columna de la tabla rayada realizada con la interfaz de usuario semántica.
HTML
<!DOCTYPE html> <html> <head> <title>Semantic UI Table Column Width Variation</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 Column Width Variation</strong> </center> <b>Striped Column Width Variation Table</b> <table class="ui table striped"> <thead> <tr> <th class="two wide">Name</th> <th class="three wide">Date Joined</th> <th class="four wide">E-mail</th> <th class="four wide">Called</th> </tr> </thead> <tbody> <tr> <td>John Lilki</td> <td>September 14, 2013</td> <td>jhlilk22@yahoo.com</td> <td>No</td> </tr> <tr> <td>Jamie Harington</td> <td>January 11, 2014</td> <td>jamieharingonton@yahoo.com</td> <td>Yes</td> </tr> <tr> <td>Jill Lewis</td> <td>May 11, 2014</td> <td>jilsewris22@yahoo.com</td> <td>Yes</td> </tr> <tr> <td>John Lilki</td> <td>September 14, 2013</td> <td>jhlilk22@yahoo.com</td> <td>No</td> </tr> <tr> <td>John Lilki</td> <td>September 14, 2013</td> <td>jhlilk22@yahoo.com</td> <td>No</td> </tr> <tr> <td>Jamie Harington</td> <td>January 11, 2014</td> <td>jamieharingonton@yahoo.com</td> <td>Yes</td> </tr> <tr> <td>Jill Lewis</td> <td>May 11, 2014</td> <td>jilsewris22@yahoo.com</td> <td>Yes</td> </tr> </tbody> </table> </body> </html>
Producción:
Referencia: https://semantic-ui.com/collections/table.html#column-width