Multiplication Table (1 to 12) - Multiplication Facts Sheet, Multiplication Table Reference Chart
We do have one more more multiplication table chart here. You can stick it in the classroom or in your own room. They are very colorful and pleasing to see.
Please download the PDF Multiplication Table (1 to 12)

Related Links:
Multiplication worksheet generator for numbers 1 to 20
Interactive Multiplication Chart
Just hover or tap on any column, you can see the intersecting rows and columns.
.multiplication-table {
border-collapse: collapse;
margin: 20px auto;
color:#333;
font-weight:bold;
}
.multiplication-table th,
.multiplication-table td {
border: 1px solid #aaa;
padding: 10px;
text-align: center;
font-family: Arial, sans-serif;
position: relative;
}
.multiplication-table th {
background-color: #f8f0f5;
color: #b30059;
}
.multiplication-table .highlight-row {
background-color: #ffebf0 !important;
}
.multiplication-table .highlight-col {
background-color: #ffe0ec !important;
}
Multiplication Table (1 to 12)
const size = 12;
const table = document.getElementById("multiplication-table");
const headerRow = document.createElement("tr");
const emptyTopLeft = document.createElement("th");
headerRow.appendChild(emptyTopLeft);
for (let i = 1; i <= size; i++) {
const th = document.createElement("th");
th.textContent = i;
headerRow.appendChild(th);
}
table.appendChild(headerRow);
const allCells = [];
for (let i = 1; i <= size; i++) {
const tr = document.createElement("tr");
const rowHeader = document.createElement("th");
rowHeader.textContent = i;
tr.appendChild(rowHeader);
const rowCells = [];
for (let j = 1; j highlightCells(i, j));
td.addEventListener("mouseleave", clearHighlights);
tr.appendChild(td);
rowCells.push(td);
}
allCells.push(rowCells);
table.appendChild(tr);
}
function highlightCells(row, col) {
clearHighlights();
for (let i = 0; i < row; i++) {
allCells[i][col - 1].classList.add("highlight-col");
}
for (let j = 0; j
cell.classList.remove("highlight-row", "highlight-col");
});
}
Printable Multiplication Chart
The following table is just a image, so you can "Save as" image in any device.

In the next page, you can see another set of chart for multiplication table.
Multiplication table chart for numbers 1 to 12
Please download the PDF for multiplication chart

