2020년 4월
2020. 4. 19. 00:13ㆍ소소한 정보
반응형
- 이를 통해서 iframe 컨텐츠를 직접 핸들링할 수 있다.
<iframe src="signal.svg" onload="this.before((this.contentDocument.body || this.contentDocument).children[0]);this.remove()"></iframe>
<object data="signal.svg" onload="this.before((this.contentDocument.body || this.contentDocument).children[0]);this.remove()"></object>
우리가 원하는 목표에 어떻게 도달할지와 어떻게 측정하고 평가할지를 나타내는 총체적인 방법을 작성.
*everything of javascript module
테크닉
:nth-child-of-class 의 대체
.active ~ .active ~ .active {
background: red;
}
array 평탄화
const array = [1, 2, [3]];
array.flat(Infinity);
// [1, 2, 3]
반응형