WebPublisher/CSS
[css] display: table 시 iOS에서 레이아웃 깨짐 현상
amanda
2022. 8. 22. 13:57
dl dt dd를 display: table 시 아이폰에서 레이아웃 깨짐
dl{
display: table;
table-layout: fixed;
max-width: none;
width: auto;
min-width: 100%;
}
dt, dd{
display: table-cell;
}
https://github.com/filamentgroup/tablesaw/issues/58