일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- typeScript
- 삶
- node.js
- Redux
- JavaScript
- solidity
- concept
- 기준
- error
- REACT
- CLASS
- Props
- Interface
- built in object
- tailwindcss
- hardhat
- useState
- SSR
- graphQL
- evm
- web
- Ethereum
- API
- express.js
- nextJS
- blockchain
- middleware
- CSS
- bitcoin
- HTML
- Today
- Total
목록Frontend/CSS (15)
ReasonJun
Shortcut properties that specify the transition effect of an element transition-property / transition-duration / transition-timing-function / transition-delay transition-property: Specifies the name of the property to use the transition effect for div { width: 100px; height: 100px; background-color: orange; transition: width 1s; => Only the horizontal length changes naturally } div:active { widt..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/b7MsEA/btsiNcWuqyo/3ojnblslgIdefK7dLWJ4r1/img.png)
Stack order In CSS, the "stack order" refers to the order in which elements are displayed or stacked on top of each other when they overlap in the layout. The stack order is determined by the z-index property, which controls the stacking context of elements. When elements overlap, the element with a higher z-index value will appear on top of elements with lower z-index values. If elements have t..
In CSS, the position property is used to specify the positioning behavior of an element within its containing parent or the entire document. It determines how an element is placed and positioned in the layout of a web page. The position property accepts several values, each defining a different positioning behavior. Here are the commonly used values: static (default): This is the default positio..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/qC9Om/btsiFCBjiKW/za9p4ktoiPt23KXUy7vtKk/img.png)
display In CSS, the display property is used to control how an element is rendered and displayed in the web page layout. It determines the type of box used for an element and how it interacts with other elements. The display property accepts various values, each affecting the layout and behavior of the element. Here are some commonly used values: In CSS, the display property is used to control h..
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cVwbyE/btsiOezs919/E3ErTEQgp9cEiZmxCbcRB0/img.png)
border In CSS, the border property is used to define the border around an element. It allows you to specify the width, style, and color of the border. The border property can be shorthand or separate properties for border-width, border-style, and border-color. Here's the syntax for the border property with shorthand notation: border: ; For example, you can set a 2-pixel solid red border with the..
css unit px : pixels % : relative percentage em : font size of the element Default HTML font size = 16px html { font-size: 16px; } width: 10em = 160 px rem : font size of root element vw : percentage of viewport width vh : percentage of viewport vertical width width, height horizontal/vertical width of the element - auto: browser calculates the width - Specify in units such as px, em, vw, etc. m..