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
- Axios delete
- css 기초
- node.js란
- promise
- await
- 웹개발
- 파이썬
- mongoose find
- HTML
- CSS
- http
- mongoose delete
- req.body
- mongoose create
- mongoose populate
- Axios post
- req.get
- res.render
- 자바스크립트
- 프론트엔드
- req.params
- req.queries
- Axios put
- express 프로젝트 시작하기
- javascript
- res.status
- res.set
- mongoose update
- Axios get
- async
Archives
- Today
- Total
목록css hover (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