백그라운드 이미지 투명도 .my-container { position: relative; background: #5C97FF; overflow: hidden; } .my-container:before { content: ' '; display: block; position: absolute; left: 0; top: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.6; background-image: url...
flexbox Flexbox 모델은 뷰포트(viewport) 및 엘리먼트 (elemnt) 크기가 동적이거나 알려지지(unknown) 않은 경우에도 문서 내의 엘리먼트간에 공간을 배치(layout), 정렬(align) 및 분산(distribute)하는 효율적인 방법을 제공합니다. display:flex (inline-flex)를 ...
git tag 명령어 정리 1. 태그 조회 local : git tag remote : git ls-remote --tags 원격저장소 이름 2. 태그 붙이기 git tag v1.0 3. 원격저장소에 올리기 git push 저장소명 v1.0 4. 모든태그를 올리려면 git push 저장소명 --tags 5. 태그삭제 git tag -d v1.0 6. 원격저장소 태...
크롬 강력 캐시비움 사이트 작업 후 크롬에서 작업결과를 확인할 때 브라우저 캐시로 인해 작업한 내용이 반영이 안되어 곤혹스러운 경우가 있다. ctrl + R, ctrl + shift + R 해보아도 캐시가 모두 비워지지는 않는다. 이때에는 f12를 눌러 개발자도구를 연 후 새로고침 아이콘을...
Atom Editor 빈줄 삭제 정규식을 이용 fine & replace 1. find : ^(?:[\t ]*(?:\r?\n|\r))+ replace : 공백 2. find : \n+ replace : \n 3. delete-whitelines' package https://atom.io/packages/delete-whitelines
XE 스팸 방어 혹시 디도스 공격을 받고 있습니까? 물론 진짜 디도스일 수도 있습니다. 하지만 스팸공격일 가능성이 더 큽니다. 적어도 xe 에서는 디도스이든 스팸이든 공격자에게는 비용이 듭니다. 만약 디도스라면 분명한 타겟 사이트가 있고 일정 비용내에서 공격할 것입...
디렉토리에 얼머나 많은 파일을 넣을 수 있을까 FAT32: Maximum number of files: 268,173,300 Maximum number of files per directory: 216 - 1 (65,535) Maximum file size: 2 GiB - 1 without LFS, 4 GiB - 1 with NTFS: Maximum number of files: 232 - 1 (4,294,967,295) Maximum file size Implementat...
image hover Change image on mouseover <a href="URL ADDRESS"><img src="URL OF THE FIRST IMAGE GOES HERE" onmouseover="this.src='URL OF THE SECOND IMAGE GOES HERE'" onmouseout="this.src='URL OF THE FIRST IMAGE GOES HERE'" /></a>