Gravity Tag
To add gravity to an element the attribute class is set to the value "grav" as follows:<span class="grav" > stuff </span>
The interactive example to the right shows the difference in setting
the class attribute value. When the attribute is set to
<span class="hello" ...
the word HELLO doesn't have gravity act on it. Go ahead and change the word
value of class to grav
Things that won't work
Here the class attribute is not contained inside the tag:<span> class="grav" </span>
Here the attribute value is missing an exit quote:
<span class="grav > </span>
Here we are missing a space:
<spanclass="grav" > </span>