|
|
От: |
Буравчик
|
|
| Дата: | 16.09.19 09:25 | ||
| Оценка: | |||
<!DOCTYPE html>
<html lang="en">
<head>
<style>
.table {
width: 100%;
}
.cell-inner {
width: 500px;
background-color: pink;
}
.cell-outer {
background-color: lightgreen;
}
</style>
</head>
<body>
<table class="table">
<tr>
<td class="cell-outer">Header A</td>
<td class="cell-inner">Header B</td>
<td class="cell-outer">Header C</td>
</tr>
</table>
</body>
</html>