标签墙、还有什么实现方式我这个好像不好看css多

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>---</title>
<script src="js/jquery.1.7.2.min.js" type="text/javascript"></script>
<style type="text/css">
body,a{ font-size:13px;}
a{ color:#333333; text-decoration:none;}
.taglist{ width:250px;overflow:hidden;border:#dddddd solid 1px;}
.taglist .tit{ width:100%; height:24px; line-height:24px; background-color:#565662;}
.taglist .tit a{ padding-left:8px; color:#ffffff;}
#tags a{height:26px; line-height:26px;padding-right:6px;}
#tags .tags0{}
#tags .tags1{color:#C00; font-size:24px;}
#tags .tags2{color:#030; font-size:16px;}
#tags .tags3{color:#00F;}
#tags .tags4{ font-size:16px;}
#tags .tags5{color:#C00; font-size:20px;}
#tags .tags6{color:#F06 font-size:20px;}
#tags .tags7{color:#030; font-weight:bold; font-size:18px;}
#tags .tags8{color:#F06; font-weight:bold;}
#tags .tags9{color:#C00; font-weight:bold;font-size:16px;}
#tags a:hover{ color:#F00; text-decoration:underline;}
.w95{ width:95%; margin:0 auto; padding-top:6px; padding-bottom:6px;}
</style>
</head>

<body>
<div class="taglist">
    <div class="tit"><a href="#">TAG标签</a></div>
    <div class="w95" id="tags">
        <a href=''>标签!</a>
        <a href=''>标签!标签!</a>
        <a href=''>标签!!</a>
        <a href=''>标记!</a>
        <a href=''>BH</a>
        <a href=''>bm</a>
        <a href="">dk</a>
        <a href="">IG</a>
    </div>
</div>
</div>
   <script type="text/javascript">
      $(document).ready(function() {
         var tags_a = $("#tags a");
         tags_a.each(function(){
             var x = 9;
             var y = 0;
             var rand = parseInt(Math.random() * (x - y + 1) + y);
             $(this).addClass("tags"+rand);
          });
      })   
   </script>
</body>

</html>



你可能感兴趣的:(标签墙、还有什么实现方式我这个好像不好看css多)