Показать сообщение отдельно
  #6 (permalink)  
Старый 12.03.2023, 17:05
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,072

Aidec,
отмечены ячейки в которых есть цифра 9
<!DOCTYPE HTML>
<html>
<head>
    <title>Untitled</title>
    <meta charset="utf-8">
    <style type="text/css">
        table {
            border-collapse: collapse;
            border: 2px solid rgb(200, 200, 200);
            letter-spacing: 1px;
            font-family: sans-serif;
            font-size: 0.8rem;
        }
        td,
        th {
            border: 2px solid rgb(200, 200, 200);
        }
        td[data-txt*="9"] {
            background-color: #FF0000;
        }

    </style>
</head>
<body>
    <table>
        <caption>Alien football stars</caption>
        <tr>
            <th scope="col">Player</th>
            <th scope="col">Gloobles</th>
            <th scope="col">Za'taak</th>
        </tr>
        <tr>
            <th scope="row">TR-7</th>
            <td data-txt="7">7</td>
            <td data-txt="4,569">4,569</td>
        </tr>
        <tr>
            <th scope="row">Khiresh Odo</th>
            <td data-txt="7">7</td>
            <td data-txt="7,223">7,223</td>
        </tr>
        <tr>
            <th scope="row">Mia Oolong</th>
            <td data-txt="9">9</td>
            <td data-txt="6,219">6,219</td>
        </tr>
    </table>

</body>
</html>
Ответить с цитированием