Added tabellenmanipulation

This commit is contained in:
2019-05-19 13:52:39 +02:00
parent 17449b7818
commit b6735e15c3

View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Tabellenmanipulation</title>
<style>
table {
margin-left: auto;
margin-right: auto;
}
table, th, td {
border: 1px solid black;
}
p {
text-align: center;
}
</style>
</head>
<body>
<button id="inscol">Spalte hinzufügen</button>
<button id="delcol">Spalte entfernen</button>
<button id="insrow">Zeile hinzufügen</button>
<button id="delrow">Zeile entfernen</button>
<p id="dimension"></p>
<table id="table"></table>
</body>
</html>