image full screen css - How TO - Full Page Image https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_full_page Tryit Editor v3.6 body, html { height: 100%; margin: 0; } .bg { /* The image used */ background-image: url("img_girl.jpg"); /* Full height */ height: 100%; /* Center and scale the image nicely */ background-position: center; background-repeat: no-repeat; background-size: co ww..
[WEB] 화면별 일반적인 해상도. 웹에서 어떻게 볼 것인가? 반응형 웹 대응 ==================================================== ▶ 720, 1024, 1334, 1600 네 가지 분기 처리(Breakpoint)를 기본 360 / 640 / 720 / 1024 / 1334 / 1600 / 1920 - PC @media all and (max-width:1500px) {} @media all and (max-width:1280px) {} @media all and (max-width:1180px) {} - 태블릿, 모바일 @media all and (max-width:981px) {} @media all and (max-width:768px) {} @medi..
[chrome] 크롬 화면 분할 확장프로그램 우선 설정 > 모양 > 테마 (Chrome 웹 스토어 열기) 클릭 웹 스토어에서 확장 프로그램을 검색한다. Split Tabs 라는 프로그램이다. Split Screen made easy. Resize the CURRENT tab and tabs to the RIGHT into layouts on separate windows. w/ Multi Monitor Support. For a more easily readable description please visit: https://github.com/peterdotjs/tab-resize ***** Version 2.3.0 -------------------------- Added default shortcu..
Multi Screen & Density 안드로이드는 다양한 해상도와 density를 지원하는 여러 기기에서 동작하고 있다. 기본적으로 각각의 기기에 맞게 내부적으로 저절하지만, 이것을 최적화하는 것은 개발자의 몫이다. 안드로이드는 해상도가 다른 기기에서 별무리 없이 돌아갈 수 있도록 layout과 drawable 파일들을 옵션에 따라 분류해 해결하고 있다. 애플리케이션 구동시 안드로이드 시스템은 각 density에 알맞는 리소스를 선택하거나 이미 존재하고 있는 리소스를 불러온 후 이것을 조절해 각 디바이스마다 다른 density 문제를 해결한다. * http://developer.android.com/guide/topics/resources/drawable-resource.html 3.2 이전 버전에서..