목록academy (45)
기초공사 (html,css,javascript)
// 이제 조금은 이해가 간다. 1. return은 코드블럭에서 실행을 할수 있게끔 해주는것이다. // 5, 5, undefined가 콘솔에 찍힌다. 실행부에서 addNumber(2,3)에서 코드블럭 실행하기 위해 위에 올라가는데 내부의 console.log(num1 + num2); 에 의해서 5가 찍히고, ----------1. console.log(addNumberPrint(3, 4)); 에서 addNumberPrint(3,4)가 있네?...코드블럭으로 올라가서 역시 내부의 console.log(num1 + num2);에 의해서 7이 찍히고, ----------2. 자바스크립트에서는 명시적으로 아무것도 반환하지 않으므로 반환값은 undefined가 됩니다. 그리고 return이 없으므로 자바스크립트에..
// // https://chohyeonjunn.tistory.com/74 소스코드 수정 후 git 저장소에 반영하기 소스코드 수정 후 git 저장소에 반영하기 일반적으로 소스코드를 수정하는 것은 두 가지 사례로 나뉘게 됩니다. 해당 프로젝트에 소속된 사람이 아닌 경우 만약 우리가 특정한 커뮤니티(Community) chohyeonjunn.tistory.com
// 네이버 구조분석 중 .mobile-ul li:first-of-type p:before { content: ""; display: inline-block; width: 22px; height: 22px; /* background-image: url("../img/logos.png"); background-size: 444px 434px; background-position: -391px -73px; background-repeat: no-repeat; */ background: url("../img/logos.png") no-repeat -391px -73px / 444px 434px; vertical-align: top; border: 1px soli yellowgreen; } 저렇게 한번에 쓸수 ..
// 감싸고 있는 부모인 .widget-box-cotainer 는 height:0으로 된다. 자식요소 높이가 138px가 지정되어있는데도, 자식요소는 float:left로 되어있다. 그래서 부모에 ::after를 줘서 clear:both를 줘야한다. 코드, 위젯 보드 캘린더 2.29 목 로그인하기 메모 로그인하기 papago 번역하기 영어사전 css /* 위젯 */ .widget { padding: 15px 15px 100% 15px; margin-top: 15px; background-color: #f4f6fa; border: 1px solid salmon; text-align: left; } .widget > p { font-weight: 700; } .widget-box-cotainer { posi..
// https://www.elegantthemes.com/ The Most Popular WordPress Themes In The World Promote Split Testing, Lead Generation, and Social Media Integration Harness the power of the Elegant Themes plugin suite, including Bloom and Monarch, the best tools for gathering leads and building your social following online. Use Divi's built-in split www.elegantthemes.com 이 사이트와 똑같이 만들어보고싶다. flex도 섞여있고, 바탕까는것도 ..
// https://velog.io/@cakecoder/CSS-%EC%8A%A4%ED%83%95%EB%94%9C-%EB%AC%B8%EC%84%9C%EC%97%90%EC%84%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94-%EB%B0%B0%EA%B2%BD-%EA%B7%B8%EB%9D%BC%EB%8D%B0%EC%9D%B4%EC%85%98-%EA%B4%80%EB%A0%A8-%EC%86%8D%EC%84%B1%EB%93%A4 CSS 스타일 문서에서 사용하는 배경과 그라데이션 관련 속성들 background-size 값은 background-position 값과 함께 사용될 때만 단축형 구문에 포함될 수 있다. 즉, 두 값을 모두 명시하거나 background-position 값만 사용하면..
// https://www.youtube.com/watch?v=nxi1EXmPHRs&t=141s // 예제 -사진 https://github.com/dream-ellie/css-grid GitHub - dream-ellie/css-grid Contribute to dream-ellie/css-grid development by creating an account on GitHub. github.com
// 임의로 만들어봤다. 화면이 줄어듬에 따라 aside 두개는 안줄어들고 가운데만 변하게 하기 --> aside는 flex-basis를 주고, 안줄어 들게하는 flex-shrink=0을 주면된다. Flex-aside는 안줄어들고 가운데만 변하게하기 html css javascript Lorem ipsum dolor sit amet consectetur adipisicing elit. Ipsam quos vel culpa, adipisci dolores itaque voluptatibus voluptatem repellendus quaerat obcaecati illo ullam possimus officia tempora? Illo illum delectus sunt perferendis. AD 홈페이..