프론트엔드-코드 237

Flex

가로정렬 하는 법: float, inline-block, flex flex는 부모에다가 줌. 그냥 flex flex-inline 이거는 inline 속성, 그러니까 flex-inline끼리 가로로 쌓임. 그냥 flex는 블록속성, flex-inline은 인라인블록이라고 보면 됨. 이거는 즉 flex를 가진 것끼리의 관계임. flex미만이 아니라 부모가. flex-direction: colum flex-direction: colum-reverse flex-direction 기본값은 row임. row-reverse도 있음. flex-wrap: wrap 이거 해야 저거 세개 총 width보다 화면너비가 작아지면 저렇게 아래로 내려옴. 저거 width 주고 해본거. flex-wrap: wrap 안주고 자식들에게..

자바스크립트 html에 추가.

document.addEventListener('DOMContentLoaded',function(){ const ulList = this.createElement('ul'); let textArray = ['Home', 'About', 'Product', 'Contact Us']; textArray.map((list, index)=>{ ulList.innerHTML += `${list}` }); console.log(ulList); document.body.appendChild(ulList); }); createElement 해서 생성만 한다. .innerHTML, 즉 저 Element의 html태그 안쪽에 저것들을 넣는다. 저 .map(list, index)는 반복문이라고 보면 편함. index가 번호..