9 ms·
You can now assign the class to a container div - you must still provide some empty tags to specify what kind of content you want. For example, if you need a c
by rthprog 14y ago
You can now assign the class to a container div - you must still provide some empty tags to specify what kind of content you want.
For example, if you need a couple paragraphs of text, you can use `<article class="fixie"></article>`. If you need exactly 1 header followed by 3 paragraphs, you can use
```
<article class="fixie">
<h1></h1>
<p></p>
<p></p>
<p></p>
</article>
```