벌써부터 눈물이 앞을 가린다 ㅠㅠㅠㅠ
얼마전에 테이블을 자바스크립트 for문으로 짰는데
이젠 그리드를 목록(ul,li)로 짜라니 ㅠㅠㅠㅠㅠㅠ
(사실 조금은 신기해서 눈물 흘리면서 웃는 중)
const playground = document.querySelector(".playground > ul");
console.log(playground);
for (let i = 0; i < 20; i++){
const li = document.createElement("li");
const ul = document.createElement("ul");
for (let j = 0; j < 10; j++){
const matrix = document.createElement("li");
ul.prepend(matrix)
}
li.prepend(ul)
playground.prepend(li)
}
테트리스 만들면서 먼저 접해보는군...
자... 일단 ul 하나 만들어 놓았고 코드를 하나씩 보자...!
그래서 총 200개의 작은 네모가 만들어졌다