목록2025/04 (2)
Studyyyyy

보통 input을 꾸미려면 label을 쓰라고 한다. label, ::before, ::after 등등 나도 자주 썼지만 쓸때마다 너무 복잡하다.그래서 요즘은 최대한 간단하게 css의 accent-color를 사용하여 강조색을 변경해 주는 방법을 사용하고 있다. 아래 링크에서 예시를 보면 checkbox 외 range input, process 등등 여러가지에 적용 가능하다.https://www.w3schools.com/cssref/tryit.php?filename=trycss4_accent-color W3Schools online HTML editorThe W3Schools online code editor allows you to edit code and view the result in your b..

특정한 상황에서 페이지 전체(html/body)가 움직여버리는 현상이 생겼다.나의 경우엔 header를 고정, content를 header의 height(60px)만큼 margin-top을 적용시켜놨는데, 특정 상황에서 자꾸 페이지 전체가 60px씩 위로 올라가버리고, 창의 하단엔 그만큼의 여백이 생겨버렸다. https://stackoverflow.com/questions/11039885/scrollintoview-causing-the-whole-page-to-move ScrollIntoView() causing the whole page to moveI am using ScrollIntoView() to scroll the highlighted item in a list into view. When I..