본문 바로가기

css

[css] table border 강제로 제거하기

html에서의 적용

<table style="border-style : hidden!important;">
</table>

 

css에서의 적용

table{
	border-style : hidden!important;
}

 

important 남용은 좋지 않지만 테이블 보더가 겹칠땐 이렇게 하는 게 제일 나은 것 같다

더 좋은 방법 아시면 댓글 부탁드려요....................