/ Published in: CSS
Styling a tag cloud created with span tags. Only styling included.
Expand |
Embed | Plain Text
#textCloud { font-family: 'Verdana', Arial, Tahoma; font-size: 20px; width: 275px; height: 250px; border: none; } /* Float Left, then Right. Offset Margin for the extra random off-set look. */ #textCloud span { border: 1px solid #000; position: relative; float: left; padding: 2px; margin-right: 5px; } #textCloud span:nth-child(odd) { border: 1px solid #000; position: relative; float: right; padding: 2px; margin-left: 10px; }
You need to login to post a comment.
