scss 반응형 position $image-width: 1912; // 이미지 가로 값$image-height: 625; // 이미지 세로 값@mixin position($t, $l) { //100% 일 때 탑, 레프트 값) top: calc($t / $image-height * 100%); left: calc($l / $image-width * 100%);}.p-1 { @include position($t: 238, $l: 664)} 💅🏻 css 2024.12.18
[그누보드] 게시판 테이블 모바일 모양 css .tbl_wrap table { border: 2px solid var(--cBlack); border-left: 0; border-right: 0; } .tbl_wrap table tr { @include dpFlex($fd: column); } #bNotice .tbl_head01 thead th { display: none; } #bNotice #bo_list .td_num2, #bNotice #bo_list .td_datetime { width: 100%; } #bNotice #bo_list .td_datetime { border-bottom: 1px solid var(--cBlack); padding-bottom: 20px;} #bNotice #bo_list .td_num2 { color: va.. 📑 그누보드 2023.12.05
js aos.js 반응형에서 기능 삭제하기 AOS.init({ disable: function() { var maxWidth = 769; return window.innerWidth < maxWidth; } }); 🕹 스크립트 2022.10.04