Block vs Inline

This commit is contained in:
Linus Miller 2016-03-20 10:15:56 +01:00
parent 87d40f8656
commit 2b75c268a8

View File

@ -0,0 +1,11 @@
# Block vs Inline
Below, 'some text' is actually inline, but unstylable.
```
<div>
Some text
<div>Nested text</div>
<span>More text</span>
</div>
```