Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- css 기초
- mongoose populate
- res.render
- res.status
- res.set
- req.params
- req.queries
- promise
- express 프로젝트 시작하기
- HTML
- node.js란
- await
- 파이썬
- mongoose update
- mongoose delete
- 프론트엔드
- Axios put
- http
- Axios post
- 자바스크립트
- javascript
- req.get
- mongoose find
- CSS
- mongoose create
- Axios get
- async
- 웹개발
- req.body
- Axios delete
Archives
- Today
- Total
목록css after (1)
모스카토

pseudo selector는 태그가 어떤 특정 상태일 때의 스타일을 지정하는 방법이다. button:hover{background-color:red;} 위 코드와 같이 button에 마우스가 올라간 상태일 때 button의 배경색을 빨갛게 해줄 수 있다. pseudo selector 종류 1. pseudo class : 태그의 상태에 따라 선택한다. :hover 마우스를 올린 상태 :focus 키보드 tab으로 선택되어 있는 상태 :focus-within 자식이 포커스된 상태 :active 클릭된 상태 :visited 방문한 링크일때 :link 방문하지 않은 링크일때 :first-child first child 일때 :last-child last child 일때 :nth-child(n) n번째 chil..
프런트엔드
2020. 9. 13. 22:33