1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| <html> <head> <style type="text/css">
.b_tagcloud a { border-radius: 0 5px 5px 0; color: #FFFFFF; display: inline-block; float: left; font-family: Menlo,Monaco,"Andale Mono","lucida console","Courier New",monospace; font-size: 12px; font-weight: normal; height: 22px; line-height: 18px; margin: 6px 24px 5px 8px; padding: 4px 5px 0 10px; position: relative; text-decoration: none; }
.b_tagcloud a:hover{ opacity: 0.8; } .b_tagcloud a:before { border: 13px solid rgba(0, 0, 0, 0); content: " "; height: 0; left: -26px; position: absolute; top: 0; width: 0; } .b_tagcloud a:after { background-color: #FFFFFF; border-radius: 4px; box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3); content: " "; height: 4px; left: 2px; position: absolute; top: 9px; width: 4px; }
.b_tagcloud a.color1 { background: none repeat scroll 0 0 #FF945C; } .b_tagcloud a.color1:before { border-right-color: #FF945C; }
.b_tagcloud a.color2 { background: none repeat scroll 0 0 #F5C7B7; } .b_tagcloud a.color2:before { border-right-color: #F5C7B7; }
.b_tagcloud a.color3 { background: none repeat scroll 0 0 #BA8F6C; } .b_tagcloud a.color3:before { border-right-color: #BA8F6C; }
.b_tagcloud a.color4 { background: none repeat scroll 0 0 #CFB7C4; } .b_tagcloud a.color4:before { border-right-color: #CFB7C4; }
.b_tagcloud a.color5 { background: none repeat scroll 0 0 #7B5D5F; }
.b_tagcloud a.color5:before { border-right-color: #7B5D5F; }
</style> </head> <body> <div class="b_tagcloud"> <a class="color1" href="/tags/java/">java</a> <a class="color2" href="/tags/net/">net</a> <a class="color3" href="/tags/c#/">c#</a> <a class="color4" href="/tags/ruby/">ruby</a> <a class="color5" href="/tags/c++/">c++</a> <a class="color1" href="/tags/数据库/">数据库</a> <a class="color2" href="/tags/HTML编程/">HTML编程</a> <a class="color3" href="/tags/动态库/">动态库</a> <a class="color4" href="/tags/WEB服务器/">WEB服务器</a> <a class="color5" href="/tags/安卓/">安卓</a> <a class="color1" href="/tags/IOS/">IOS</a> </div> </body> </html>
|