sablog1.6修改记录[bug]
本次sablog-x1.6版本升级加入了一个新的功能,就是可以在后台修改css文件,但是,每次我修改css文件,我的blog的版面的布局就会有一定的出入,修改后左右两列间的空隙消失,紧紧地贴在了一起。经过修改前后文件的对比,发现,经后台css文件的保存,css文件的数据有部分丢失。
修改前css:
#right {
position:absolute;
top:0px;
right: 0px; /* Opera5.02 will show a space at right when there is no scroll bar */
margin:20px;
padding:10px;
border:1px solid #8996A5;
width: 220px; /* ie5win fudge begins */
voice-family: “\”}\”";
voice-family:inherit;
width: 200px;
}
修改后css:
#right {
position:absolute;
top:0px;
right: 0px; /* Opera5.02 will show a space at right when there is no scroll bar */
margin:20px;
padding:10px;
border:1px solid #8996A5;
width: 220px; /* ie5win fudge begins */
voice-family: “”}“”;
voice-family:inherit;
width: 200px;
}
仅仅少了两个\就造成了版面的错误……

关于 “sablog1.6修改记录[bug]”的评论(1条)
被转义掉了