Показать сообщение отдельно
  #7 (permalink)  
Старый 12.10.2023, 19:06
Аватар для ruslan_mart
Профессор
Отправить личное сообщение для ruslan_mart Посмотреть профиль Найти все сообщения от ruslan_mart
 
Регистрация: 30.04.2012
Сообщений: 3,018

Можно без has:

<style type="text/css">
        #iItemTbl tr {
            position: relative;
        }
        #iItemTbl tr :checked + .background {
            background-color: #008000;
            position: absolute;
            inset: 0;
            z-index: -1;
        }
    </style>
    <table id="iItemTbl">
        <thead>
            <tr>
                <th>Title 1</th>
                <th>Title 2</th>
                <th>Title 3</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>Cell 1.1</td>
                <td>Cell 1.2</td>
                <td>
                  <input id="r0c0" type="checkbox">
                  <div class="background"></div>
                </td>
            </tr>
            <tr>
                <td>Cell 2.1</td>
                <td>Cell 2.2</td>
                <td>
                  <input id="r1c0" type="checkbox">
                  <div class="background"></div>
                </td>
            </tr>
        </tbody>
    </table>
Ответить с цитированием