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
CSS table-layout: fixed; isn't working with iOS Safari · Issue #58 · filamentgroup/tablesaw
CSS table-layout: fixed; isn't working with iOS Safari. It works with latest Chrome and Firefox, but not latest iOS Safari (tested with iPhone 6). This seems to be another issue, because my tab...
github.com