[CSS] Height 100% - n px Height 100%에서 n 픽셀만큼 빼고 싶을때 calc() 함수를 쓰면 된다. height: calc(100% - 65px); /* IE */ height: -o-calc(100% - 65px); /* opera */ height: -webkit-calc(100% - 65px); /* google, safari */ height: -moz-calc(100% - 65px); /* firefox */ 출처: http://stackoverflow.com/questions/4587582/css-height-of-100-minus-px-header-and-footer 더보기 [CSS] div width 100% padding div태그 padding때문에 종속된 내부 div width:100% 일때 외부 div 밖으로 돌출되는 현상 * 내부 div 태그 css 속성에 아래와 같은 속성을 추가해주면 된다.-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */-moz-box-sizing: border-box; /* Firefox, other Gecko */box-sizing: border-box; /* Opera/IE 8+ */ 출처: http://css-tricks.com/box-sizing/ 더보기 JSON 키, 키값 가져오기 var contact = new Object(); contact.firstname = "Jesp"; contact.surname = "Aaberg"; contact.phone = ["555-0100", "555-0120"]; for(var key in contact){ alert(contact.length); } 더보기 이전 1 ··· 12 13 14 15 16 17 18 ··· 47 다음