small example
This commit is contained in:
parent
07fe15952a
commit
23d613ba0f
2 changed files with 29 additions and 1 deletions
12
css/main.css
12
css/main.css
|
@ -129,4 +129,16 @@ table#t01 th {
|
||||||
th {
|
th {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
border-bottom: 3px solid lightgrey;
|
border-bottom: 3px solid lightgrey;
|
||||||
|
}
|
||||||
|
|
||||||
|
.did {
|
||||||
|
border: 1px solid;
|
||||||
|
float: left;
|
||||||
|
padding: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.didi {
|
||||||
|
border: 5px solid green;
|
||||||
|
float: left;
|
||||||
|
padding: 2em;
|
||||||
}
|
}
|
18
index.html
18
index.html
|
@ -72,10 +72,26 @@
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
// create table
|
// create table
|
||||||
handleFile("resources/world_data_v1.csv")
|
handleFile("resources/world_data_v1.csv")
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
<div class="did">
|
||||||
|
<h2>Listenüberschrift</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Listenpunkt 1</li>
|
||||||
|
<li>Listenpunkt 2</li>
|
||||||
|
<li>Listenpunkt 3</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="didi">
|
||||||
|
<h2>Listenüberschrift</h2>
|
||||||
|
<ul>
|
||||||
|
<li>Listenpunkt 1</li>
|
||||||
|
<li>Listenpunkt 2</li>
|
||||||
|
<li>Listenpunkt 3</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
<hr style="border: 1px solid lightgreen">
|
<hr style="border: 1px solid lightgreen">
|
||||||
<p>Copyright © 2018 world_data</p>
|
<p>Copyright © 2018 world_data</p>
|
||||||
|
|
Loading…
Reference in a new issue