CSS
-
text-overflow 글자 자르기CSS 2022. 11. 25. 11:43
text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
-
-
accordion-buttonCSS 2022. 11. 25. 10:55
.accordion-button { position: relative; display: flex; align-items: center; width: 100%; padding: 1rem 1.25rem; font-size: 1rem; color: #000000; ——> css. 파일에서 얘 복사해서 _000.scss 파일에 넣은 후 수정하면 됨 text-align: left; background-color: #fff; border: 0; border-radius: 0; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, ..
-
position: fixed는 뷰포트를 기준으로 요소를 배치CSS 2022. 11. 23. 14:33
부모 요소가 아닌 브라우저의 전체화면(viewport)을 기준으로 요소를 배치 할 수 있다.