JSFiddle - React, Tailwind, and code Playground
by dipaks2011
HTML
<ul>
<li>A deep link reflects where the user is in the app</li>
<li>this is useful so users can bookmark and email </li>
<li>links to locations within apps. Round trip apps get </li>
<li>this automatically, but AJAX apps by their nature do not.</li>
<li>AngularJS combines the benefits of deep link with </li>
<li>desktop app-like behavior.</li>
</ul>
CSS
li{ list-style-type: none; margin: 0; }
li:nth-child(odd){ background: #f3f3f3; }
li:nth-child(4){ color: red; }