css table 셀 너비 일정하게 하기

lize·2022년 5월 20일

부모 태그에

부모 {
	display: table;
    table-layout: fixed;
}

자식 태그에

자식 {
	display: table-cell;
}

0개의 댓글