
CSS) flex 연습게임 'flexbox-Froggy'
2020. 11. 7. 00:03
Frontend
flex 연습으로 유명한 flexbox를 해봤다 flexboxfroggy.com/#ko Flexbox Froggy A game for learning CSS flexbox flexboxfroggy.com 마지막 문제는 이해는 안가면서 푼 것 같다 특히 wrap-reverse 가 핵심이었다 23번까지는 이해하면서 다 풀었다 아무튼 깨니깐 기분 조금 좋다 한 20분 정도 걸린 것 같다.
CSS) 컬러 , 레이아웃 사이트
2020. 11. 6. 14:57
Frontend
컬러 사이트 www.color-hex.com/ Color Hex Color Codes Got it! This website uses cookies to collect information about how you interact with our website. We use this information in order to improve and customize your browsing experience and for analytics and metrics about our visitors. To find out more about th www.color-hex.com 레이아웃 사이트 1linelayouts.glitch.me/ 1-Line Layouts HTML CSS Explore on CodePen..

CSS) 초기화(reset) 리셋 코드, 리셋 사이트
2020. 11. 6. 13:21
Frontend
간단 리셋 * { box-sizing: border-box; } body { margin: 0; padding: 0; } 리셋 사이트 cssreset.com/scripts/eric-meyer-reset-css/ Eric Meyer’s “Reset CSS” 2.0 | CSS Reset One of the pioneers of the CSS Reset method, Eric Meyer, created a Reset stylesheet that is still in use on millions of websites today. Most people use it in its unedited form, despite Meyer’s recommendation against this: The reset styles ..

javascript) spread syntax
2020. 11. 4. 19:43
Backend 언어 및 프레임워크
...args가 함수 인자로 들어갔을 때, 배열로 들어간 것이다 따라서 배열로 담겨서 된 것이다 ...변수 = [10, 30, 40]