Daniel Muñoz

Generation

css from descriptionThu, 30 Mar 2023

Ingresar bordes a la siguiente tabla html <table> <thead> <tr> <th>Hora</th> <th>Lunes</th> <th>Martes</th> <th>Miercoles</th> <th>Jueves</th> <th>Viernes</th> </tr> </thead> <tbody> <tr> <td>7:00AM-7:45AM</td> <td>Reunion General</td> <td>Física</td> <td>Filosfia</td> <td>Edu. Física</td> <td>Español</td> </tr> </thead> <tbody> <tr> <td>7:55AM-8:50AM</td> <td>Química</td> <td>Física</td> <td>Filosfia</td> <td>Edu. Física</td> <td>Español</td> </tr> </thead> <tbody> <tr> <td>8:50AM-9:45AM</td> <td>Química</td> <td>Religión</td> <td>Etica</td> <td>Español</td> <td>Física</td> </tr> </thead> <tbody> <tr> <td>10:15AM-11:10AM</td> <td>Ciencias Politicas</td> <td>Ingles</td> <td>Química</td> <td>Español</td> <td>Física</td> </tr> </thead> <tbody> <tr> <td>11:10AM-12:05PM</td> <td>Matemáticas</td> <td>Ingles</td> <td>Ciencias Politicas</td> <td>Química</td> <td>Matemáticas</td> </tr> </thead> <tbody> <tr> <td>12:05PM-1:00PM</td> <td>Matemáticas</td> <td>Plan Lector</td> <td>Ingles</td> <td>Química</td> <td>Matemáticas</td> </tr>

table { border-collapse: collapse; width: 100%; } th, td { text-align: left; padding: 8px; } tr:nth-child(even){background-color: #f2f2f2} th { background-color: #4CAF50; color: white; }

Questions about programming?Chat with your personal AI assistant