We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
We applied the same technology of splitting letters into splitting words with lettering.
Here's an example of the .lettering('words') method:
.lettering('words')
<p class="word_split">Don't break my heart.</p> <script> $(document).ready(function() { $(".word_split").lettering('words'); }); </script>
Which will generate:
<p class="word_split"> <span class="word1">Don't</span> <span class="word2">break</span> <span class="word3">my</span> <span class="word4">heart.</span> </p>
You can then style each word using the .word# class.
.word#