.container{display:flex;flex-wrap:wrap;justify-content:space-between;}.container.entry{padding:0;margin:5px;width:10%;/*to be responsive*/height:20px;border:1pxsolidblack;text-align:center;line-height:20px;}
functioncreateDivs(count,itemsInaRow){for(leti=1;i<=count/itemsInaRow;i++){constcontainer=$("<div>").addClass("container");//each container contain five entryfor(letj=1;j<=itemsInaRow;j++){constdiv=$("<div>").addClass("entry").text("");container.append(div);}$("body").append(container);}//after creating 5x20 grid, set the values$(".entry").each(function(index,obj){$(this).text(String(index+1).padStart(3,'0'));});}createDivs(100,5);
Top comments (0)
Subscribe
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)