1.img标签中ALT的文字大小---除非你自己用div模拟。不然没办法。
2.你可以不用系统带的。自己输入就可以控制大小了。像控制一般的文字一样。输入的时候用智能abc要用v加数字键。里面符号很多的。

解决方案 »

  1.   


    <ul>
    <li style=" list-style-type:none;"><font style="font-size:12px">■</font>&nbsp;dddddddddd</li>
    <li style="list-style-type:none"><font style="font-size:9px">○</font>&nbsp;dddddddddd</li>
    <li style=" list-style-type:none;"><font style="font-size:24px">■</font>&nbsp;dddddddddd</li>
    <li style="list-style-type:none"><font style="font-size:24px">○</font>&nbsp;dddddddddd</li></ul>
      

  2.   

    div也不可以 我试过了
    第二个谢谢 我试下
      

  3.   

    div模拟不可以实现文字大小的改变???
      

  4.   

    1.这个可以使用SPAN模拟:代码如下:
    <style>
    .thumbnail{
    position: relative;
    z-index: 0;
    }
    .thumbnail:hover{
    background-color: transparent;
    z-index: 50;
    }
    .thumbnail span{ /*CSS for enlarged image*/
    position: absolute;
    background-color: #eeeeee;
    padding: 5px;
    left: -10000px;
    border: 0px dashed gray;
    visibility: hidden;
    color: black;
    text-decoration: none;
    }
    .thumbnail span img{ /*CSS for enlarged image*/
    border-width: 0;
    padding: 2px;
    }
    .thumbnail:hover span{ /*CSS for enlarged image on hover*/
    visibility: visible;
    top: 20px;
    left: 60px; /*position where enlarged image should offset horizontally */
    right:60px;
    bottom:10px
    }
    </style>
     <a class="thumbnail" href="#"><img src="111.jpg" width="100" height="110" border="0" /><span>fsfsfsffs</span></a>
      

  5.   

    CSS去掉Li的格式,然后再手动添加需要的图释吧,或者干脆用图片
      

  6.   

    有没有好点的办法。
    <ul>
    我自己解决了
    用的是CSS在标签里加图片就可以了但是 
    IMG ALT 我还是不知道