Added some css examples

This commit is contained in:
2025-08-05 22:54:26 +02:00
parent a7b6a93680
commit 186f9c036a
5 changed files with 188 additions and 1 deletions

27
css-examples/insets.html Normal file
View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Insets</title>
<link rel="stylesheet" href="insets.css">
</head>
<body>
<div class="viewport">
<div class="overlay top-left">Corner</div>
<div class="overlay top-right">Corner</div>
<div class="overlay bottom-left">Corner</div>
<div class="overlay bottom-right">Corner</div>
<div class="overlay top-center">Edge</div>
<div class="overlay bottom-center">Edge</div>
<div class="overlay left-center">Edge</div>
<div class="overlay right-center">Edge</div>
<div class="overlay center">Center</div>
</div>
</body>
</html>