Added cssgalerie

This commit is contained in:
2019-05-06 14:42:20 +02:00
parent 1915526396
commit ba3547f0a4

36
uebung2/cssgalerie.html Normal file
View File

@@ -0,0 +1,36 @@
<!DOCTYPE html>
<header>
<title>Galerie</title>
</header>
<body>
<style>
body {
background-color: black;
}
img {
-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
filter: grayscale(100%);
}
div {
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count: 3;
}
</style>
<table>
<tr>
<td>lul</td>
<td>lul</td>
<td>lul</td>
<td>lul</td>
<td>lul</td>
<td>lul</td>
<td>lul</td>
</tr>
</table>
</body>
</html>