Added tabellenmanipulation
This commit is contained in:
27
uebung3/tabellenmanipulation.html
Normal file
27
uebung3/tabellenmanipulation.html
Normal 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>
|
Reference in New Issue
Block a user