본문 바로가기
웹프로그래밍/HTML

HTML 테이블 선 하나로 만들기 border-collapse: collapse

by 유노brain 2023. 9. 8.
반응형

HTML 테이블 선 하나로 만드는 법

https://youknow301.tistory.com/m/78

코드를 짜다보면 테이블의 선이 위의 사진처럼 이중으로 되는것을 확인할 수 있다.

 

위의 사진 처럼 만들기위해서는

border-collapse: collpase를 사용하면 된다.

 

위에 대한 예제코드는 다음과 같다.

<!DOCTYPE html>
<html>
<style>
    table,th,tr,td{
        border:2px solid red;
        width:1000px;
        border-collapse: collapse;
    }
</style>


    <body>
        <table>
            <tr>
                <th>PERSON 1</th>
                <th>PERSON 2</th>
                <th>PERSON 3</th>
            </tr>
            <tr> 
                <td>KOREA</td>
                <td>JAPAN</td>
                <td>CHINA</td>
            </tr>
            <tr>
                <td>50,000,000</td>
                <td>120,000,000</td>
                <td>1,500,000,000</td>
            </tr>
        </table>
    </body>
</html>
반응형

댓글