Html&css
-
모달 만들기 (부트스트랩)Html&css/개념정리 2022. 11. 15. 14:35
https://getbootstrap.com/docs/5.2/components/modal/
-
미디어쿼리 세팅용Html&css/사소한 팁 2022. 11. 5. 17:23
미디어쿼리 세팅용 세팅용 /*-------------------------------------------------------------가로 : 640px 이하 시작------------------------------------------------------------------*/ @media (max-width: 640px) { } /*-------------------------------------------------------------가로 : 640px 이하 시작------------------------------------------------------------------*/ /*--------------------------------------------------------..
-
아이콘 태그 가져오는곳Html&css/사소한 팁 2022. 8. 19. 15:03
https://bit.ly/3QHh6kA Font Awesome The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options. fontawesome.com https://bit.ly/3ce8keJ Font Awesome The world’s most popular and easiest to use icon set just got an upgrade. More icons. More styles. More Options. fontawesome.com
-
스크롤 위치 이동시키기Html&css/사소한 팁 2022. 8. 18. 13:50
https://www.w3schools.com/jsref/met_element_scrollintoview.asp HTML DOM Element scrollIntoView() Method W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com
-
line-height 줄간격 , border: none; or border: 0;Html&css/개념정리 2022. 8. 18. 11:49
https://www.codingfactory.net/10639 CSS / line-height / 줄 높이 정하는 속성 개요 line-height는 줄 높이를 정하는 속성입니다. 기본값 : normal 상속 : Yes 애니메이션 : Yes 버전 : CSS Level 1 문법 line-height: normal | length | number | percentage | initial | inherit normal : 웹브라우저에서 정한 www.codingfactory.net https://nykim.work/103 border: 0 vs. border: none 결론 border: 0 쓰자! 👻 보더 없앨 때 none 보다 0을 썼었는데 이유는 그게 더 치기 편하니까 🙄 (손꾸락은 소중하자나여) 그러다 ..