guide/css-sass/introduction.md
2016-03-20 10:15:56 +01:00

12 lines
155 B
Markdown

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