head
    titleCSS Fisheye/title
    style type="text/css"
    span {font-size: x-small}
    /style
    script language="JavaScript" type="text/javascript"
    !-- 
      function convertPreBlocks() {}
var regular = "x-small";
function bigger(thing){
    thing.style.fontSize = "large";
    
    siblingElement = thing.previousSibling;
    while(siblingElement) {
        if(siblingElement.tagName=="SPAN") {
            siblingElement.style.fontSize = "medium";
            break;
        }
     ...[ 查看全文 ]