Frontend 20

NaN

1.Number cannot be parsed (e.g. parseInt("blabla") or Number(undefined)) 예시) 숫자를 파싱 (분석) 할 수 없는 경우 문자를 숫자로 형변환 2. Math operation where the result is not a real number (e.g. Math.sqrt(-1)) 계산 결과가 숫자가 아닌 경우 예시) 음수의 제곱근 *음수의 제곱근은 허수1.Number cannot be parsed (e.g. parseInt("blabla") or Number(undefined)) 예시) 숫자를 파싱 (분석) 할 수 없음 문자를 숫자로 형변환 2. Math operation where the result is not a real number (e.g...

Frontend/JavaScrpit 2021.03.23

Inline vs Block & Display

Inline은 높이 크기 등을 가질 수 없고 부모 태그에 종속된다 *display: inline-block을 통해 block 형태로 만들 수 있음 *inline은 가로로 데이터가 들어가므로 가로로 padding은 먹히지만 세로는 인식하지 못한다 Block 라인 전체를 차지함 *float를 이용하면 같은 라인에 block 배치 가능 *text-align: center은 block만 가능 display display: none display: inline display: block display: inline-block 페이지에 특정 속성을 보이거나 보이지 않게 하는 기능 display: none; visibility: hidden;

Frontend/Css 2021.03.18