导航:Home » 网络技术 » sablog1.6修改记录[bug]

sablog1.6修改记录[bug]

2007-06-02 22:27 分类:网络技术

  本次sablog-x1.6版本升级加入了一个新的功能,就是可以在后台修改css文件,但是,每次我修改css文件,我的blog的版面的布局就会有一定的出入,修改后左右两列间的空隙消失,紧紧地贴在了一起。经过修改前后文件的对比,发现,经后台css文件的保存,css文件的数据有部分丢失。

  修改前css:
#right {
    
position:absolute;
    
top:0px;
    
right0px/* Opera5.02 will show a space at right when there is no scroll bar */
    
margin:20px;
    
padding:10px;
    
border:1px solid #8996A5;
    
width220px/* ie5win fudge begins */
    
voice-family“\”}\”";
    
voice-family:inherit;
    
width200px;
    }


  修改后css:
#right {
    
position:absolute;
    
top:0px;
    
right0px/* Opera5.02 will show a space at right when there is no scroll bar */
    
margin:20px;
    
padding:10px;
    
border:1px solid #8996A5;
    
width220px/* ie5win fudge begins */
    
voice-family“”}“”;
    
voice-family:inherit;
    
width200px;
    }


  仅仅少了两个\就造成了版面的错误……

相关日志

Trackback : http://www.gengbing.com/aboutme/show-634-1.html/trackback点击这里复制
  1. 关于 “sablog1.6修改记录[bug]”的评论(1条)

  2. robben 发表于1970-01-01

    被转义掉了