일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ES5
- keyup
- UI
- js
- es6
- Review
- Dom
- Temporal dead zone
- modal
- node.js
- keyboardEvent
- dotenv
- for loop
- Event
- react
- Empty
- beforeinput
- TypingEffect
- javascript
- innerText
- node
- textContent
- nodeValue
- yet
- a11y
- HTML
- addEventListener
- css:position
- CSS
- innerHTML
- Today
- Total
목록#dev/개념정리 (74)
the murmurous sea
justify-content : aligns flex items along the main axis. : flex-start(default) | flex-end | center | space-between | space-around align-items : aligns flex items along the cross axis. : flex-start | flex-end | center | baseline | stretch(default) align-self : aligns a flex item along a cross axis, overriding the align-items value. : flex-start | flex-end | center | baseline | stretch align-conte..
1. both Font size units. Flexible, scalable units which are translated by the browser into pixel values, Both rem and em are relative units, px is not. 2. em : em inherits and scales relative to the font size of the element on which they are used. : Assumes the parent is 1em(100%). Children inherit size by scaling in relation to the parent size. : The name em was originally a reference to the wi..
CSS syntax: text-align: left|right|center|justify|initial|inherit; justify-content: normal | | ? [ | left | right ] where = space-between | space-around | space-evenly | stretch = unsafe | safe = center | start | end | flex-start | flex-end //The justify-content property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the in..
masonry layout image title When setting the masonry layout, and are separated when the content overflows to the next column. To prevent this, the outer section that surrounds and should have this value: display: inline-block "Compared to display: block, the major difference is that display: inline-block does not add a line-break after the element, so the element can sit next to other elements." ..