dailydaedori의 등록된 링크

키자드에 등록된 총 8개의 포스트를 확인하실 수 있습니다.

Tistory

ul li float하고 가운데 정렬하기

.box{ text-align:center; ul{ display : inline=block li{ float : left; } } }

Tistory

네비게이션 드로어, css 반응형 햄버거메뉴

.m-nav-draw { position: fixed; width: 80%; top: 0; left: -100%; } $(".m-header__btn").click(function() { console.log(1); $(".bgblack-layerpopup").show(); $(".m-nav-draw").animate({ marginLeft: "100%..

Tistory

css 체크박스꾸미기 , 체크박스 커스텀

<div class="policy-check"> <div class="chbox"> <input type="checkbox" id="chbx_policy" /> <label for="chbx_policy">개인정보동의서</label> </div> <div class="cont"> 텍스트영역텍스트영역텍스트영역텍스..

Tistory

css 스크롤 없애기 투명하게하기 (기능은가능하게)

해당 div 에 -ms-overflow-style: none; 추가 css에 ::-webkit-scrollbar { display:none; } 추가

Tistory

css button 사용법

<ul> <li> <button> <img>이미지</img> <span>제목</span> </button> </li> <li> <button> <img>이미지</img> <span>제목</span> </button> </li> </ul>

Tistory

jquery 이미지 attr img on off

ㅁ on일경우 off로 / off 일경우 on으로 $(this) .find("img") .attr("src", function(index, attr) { if (attr.match("on")) { return attr.replace("on", "off"); } else { return attr.replace("off", "on"); }..

1