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 Fire..
*HTML AAA BBB AAA contents BBB contents *jQuery $(document).ready(function(e){ var link = window.location.href; var day_link = link.split('?'); var control_tab = day_link[1]; if(control_tab == 'AAA'){ $('.sub-tab-menu > li').removeClass('on').eq(0).addClass('on'); $('.sub-tab-con').hide().eq(0).show(); } else if(control_tab == 'BBB'){ $('.sub-tab-menu > li').removeClass('on').eq(1).addClass('on'..
CSS .fixed{ position: fixed; left: 0; bottom: 0; z-index: 2; width: 100%; background-color: #fff; padding-bottom: 0; } jQuery $(document).ready(function(){ if(wWidth $(document).height() - top){ $('.sponsor-banner, #footer').removeClass(..
메일폼 등에서 이미지 특정부분에 링크를 걸어야 하는 경우 이미지맵 사용 이미지맵은 이미지 상의 좌표값을 활용하기 때문에 기본적으로 반응형이 적용되지 않는다 그래서 이미지맵의 좌표값들이 반응형으로 적용되도록 플러그인 사용 (rwdImageMaps) /* * rwdImageMaps jQuery plugin v1.6 * * Allows image maps to be used in a responsive design by recalculating the area coordinates to match the actual image size on load and window.resize * * Copyright (c) 2016 Matt Stow * https://github.com/stowball/jQuery-rw..