본문 바로가기

css

table tr(행) 숨기기(display:none;)

table에서 tr(행)을 숨기는 방법은 여러가지 있지만

 

css를 사용한다면,

tr태그에 id가 아닌 class를 사용하여 합니다.

 

<style>

.hidden {

    display:none;

}

</style>

 

<html>

    <table>

        <tr class="hidden">

            <td></td>

            <td></td>

        </tr>

    </table>

</html>