I need to make a anchor / link contain within its div / li and multiline.
Heres a JSFiddle to show what I mean http://jsfiddle.net/x5nPx/
<div class="locked-content">
<ul>
<li>
<a>www.example.com/39083904398980/93943430943098438094/test/example/long/link/here</a>
</li>
</ul>
</div>
<style>
.locked-content {
background: purple;
width: 200px;
height: 400px;
}
</style>
Cheers