250x250
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
- bitcoin
- blockchain
- middleware
- tailwindcss
- CLASS
- node.js
- nextJS
- API
- Props
- web
- evm
- typeScript
- 삶
- useState
- Ethereum
- error
- REACT
- Redux
- hardhat
- graphQL
- 기준
- express.js
- JavaScript
- Interface
- solidity
- built in object
- concept
- SSR
- HTML
- CSS
Archives
- Today
- Total
목록Pseudo-Classes (1)
ReasonJun
CSS : Pseudo-Classes / Pseudo-Elements / Attribute
Pseudo-Classes hover // Select while the mouse cursor is over the selector element .box { width: 100px; height: 100px; background-color: orange; transition: 1s; } .box:hover { width: 300px; background-color: royalblue; } active // Select while clicking the mouse on the selector element a:active { color: red; } focus // Select when the selector element is focused input:focus { background-color: o..
Frontend/CSS
2023. 6. 5. 16:11