|
|
|
รบกวนสอบถามเกี่ยวกับเรื่องการทํา เปลี่ยนสี ตาราง ตามสถานะที่เราต้องการครับ |
|
|
|
|
|
|
|
กำหนดที่ CSS
Code (HTML)
<!DOCTYPE html>
<html>
<head>
<style>
table, td, th {
border: 1px solid;
}
table {
width: 25%;
border-collapse: collapse;
}
td {
text-align: center;
}
.approved {
background-color: green;
color: white;
}
.pending {
background-color: red;
color: white;
}
</style>
</head>
<body>
<table>
<tr>
<th>Firstname</th>
<th>Status</th>
</tr>
<tr>
<td>Peter</td>
<td class="approved">Approved</td>
</tr>
<tr>
<td>Lois</td>
<td class="pending">Pending</td>
</tr>
</table>
</body>
</html>
|
|
|
|
|
Date :
2022-09-05 14:29:09 |
By :
009 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|