aboutsummaryrefslogtreecommitdiff
path: root/109/index.md
diff options
context:
space:
mode:
authorRodrigo Arias Mallo <rodarima@gmail.com>2025-09-28 20:26:15 +0200
committerRodrigo <rodarima@gmail.com>2025-09-28 23:10:55 +0200
commitfb510ea86be5ceb9e91573890242581fdbd77ad8 (patch)
treed819fe40683592008d136727f5a0b03e48dc1164 /109/index.md
Initial versionHEADmain
Diffstat (limited to '109/index.md')
-rw-r--r--109/index.md26
1 files changed, 26 insertions, 0 deletions
diff --git a/109/index.md b/109/index.md
new file mode 100644
index 0000000..3e2a2d8
--- /dev/null
+++ b/109/index.md
@@ -0,0 +1,26 @@
+Title: Main element doesn't behave like a div
+Author: rodarima
+Created: Sun, 31 Mar 2024 21:06:02 +0000
+State: closed
+
+```html
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Main should behave like a div</title>
+ </head>
+ <body>
+ <div style="margin-left: 20em; background: lightgreen">
+ div
+ </div>
+ <main style="margin-left: 20em; background: lightgreen">
+ main
+ </main>
+ <header style="margin-left: 20em; background: lightgreen">
+ header
+ </header>
+ </body>
+</html>
+```
+Renders:
+![kk](https://github.com/dillo-browser/dillo/assets/3866127/aacfe266-a7bb-4e54-9bef-d3cfdd6dc4a6)