본문 바로가기

전체 글

(9)
IOS 모바일 - 사파리 - CSS 주의해야 할점 input 클릭시 View가 확대 되는 경우 기존 !하고 탭을 눌러서 생성되는 경우의 메타 태그는 이렇게 생성이 된다. 이걸 아래의 코드로 변경해준다. input select의 padding이 적용이 안되는 경우 대신에 heigth과 line-height text-indent 사용 height vh가 아이폰 자체 하단 메뉴 UI에 덮어 씌어지는 경우가 있다. vh 대신에 height:auto나 100%를 사용할 것
패스트캠퍼스 스프링 온라인 강의 junit 사용시 assertThat 오류 제이유닛 버전 4를 사용할려니 다른 버전과 충돌이 일어나서 빌드가 안되고 그래서 제이유닛 5를 사용했더니 assertThat이라는 메서드가 존재하지 않는다. 구글링을 해보니 import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.is; import static org.hamcrest.MatcherAssert.assertThat; 이것이 있어야 가능하다는 것 같다... 패캠 온라인 환경 차이 땜에 5분 할때마다 에러가 나온다.....하..
[intellij] 프로젝트 빌드 오류시, 빌드가 안될때. 분명 강의를 그대로 따라 했는데도 시작한지 10분도 안되어서 빌드가 안되어서 진도를 못 나간 적이 있었다. 구글링을 해보니 In menu "Build > Rebuild project". In menu "File > Invalidate caches / Restart... > Invalidate and Restart". Remove last installed/enabled plugins if any. Check dependencies (especially cyclic-dependencies) in "File > Project Structure... > Modules" The last chance: make backup & remove .idea folder from your project directory ..