CSS 不同吧
但 MSN 不是用 CSS 的,它有自己的配色文件格式

解决方案 »

  1.   

    软件???还是网页?
    网页的话。。最好 搞个函数来更换。如果是不刷新直接更新的话 要用JS
    比如这个 我自己搞的 给INPUT 换肤用的。。也许有用
    function button_s(id){try{
    $(id).style.cursor="pointer";
    $(id).style.backgroundImage="url(img/button_c_b.bmp)";
    $(id).style.width='88px';
    $(id).style.height='22px';
    $(id).style.borderWidth="0px";
    $(id).style.textAlgin="center";
    $(id).style.lineHeight="22px";
    $(id).style.margin="5px";
    $(id).style.padding="0px";
    $(id).style.color="#15428B"; $(id).onmouseover=function(){this.style.textDecoration='underline';}
    $(id).onmouseout=function(){this.style.textDecoration='none';}}catch(e){}
    }