28 lines
758 B
HTML
28 lines
758 B
HTML
<!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>
|