I have a main div inside which i have to create multiple div with specific height and width and arrange in rows and columns. For e.g 5 Rows and 8 columns. Each div height is 80px and width is 75px. How to achieve this?
I Tried:
$(document).ready(function() {
for(var i = 1; i <= 40; i++) {
$('#test').append('<div id="page' + i + '" class="touch">TESTING</ div>' )
}
}
HTML:
<div id="test">
</div>