전체 글(114)
-
유튜브 영상 시작시간
데스크톱 버전에서는 공유 시 시작시간 넣고 주소를 복사할 수 있도록 해놓은거 같은데 핸드폰 앱에서는 볼 수 없음 그럼 주소 뒤에 파라미터 값을 추가해주면 됨 예) https://youtu.be/JFZIBnQPyqA/t=2m26s (영상의 2분 26초부터 시작하는 링크)
2022.07.08 -
Brackets 에디터 다운로드 하고 다크모드 사용하기
https://brackets.io/ A modern, open source code editor that understands web design Brackets is a lightweight, yet powerful, modern text editor. We blend visual tools into the editor so you get the right amount of help when you want it. With new features and extensions released every 3-4 weeks, it's like getting presents all year long. brackets.io 다운로드는 공식 홈페이지에서 가능하다. 따로 셋팅 없이 자동완성, CSS quick ed..
2022.01.28 -
윈도우10 폰트 바로가기 설치
윈도우10 폰트 바로 가기를 사용하여 글꼴 설치 허용하기 제어판 > 모양 및 개인 설정 > 글꼴 > 글꼴 설정 "글꼴 설치" 항목의 "바로 가기를 사용하여 글꼴 설치 허용"에 체크하고 확인을 눌러주세요.
2021.12.16 -
not css
.header-top > .left :not(:last-child){margin-right:12px;}
2021.10.13 -
윈도우10 듀얼모니터 작업표시줄 한쪽에만 나오게
윈도우10 설정에서 [작업 표시줄]을 찾는다. 스크롤을 좀 내려서 "여러 디스플레이" 밑에 "모든 디스플레이에 작업 표시줄 표시"를 [끔]으로 설정하면 끝
2021.10.06 -
리액트 전역 변수 (방법2)
App.js import MyProfile from "./components/MyProfile"; const iam = { lastName: "Hong", firstName: "GilDong", koName: "홍길동", }; return ( ) MyP...js class MyProfile extends Component { constructor(props) { super(props); this.iam = props.iam; } render() { return ( Who am I {this.iam.lastName}입니다
2021.09.28