20080831 - ClearGertrude Blog Skin 's cnblogs_code class

 

前几天的文章里添加了几次代码,发现毁坏了在低分辨率下ClearGertrude的样式。
经过源文件里的定位,发现 http://www.cnblogs.com/css/common.css 中
.cnblogs_code{
  ...
  width: 700;
  ...
}
于是在 customcss 里加上了以下代码,页面就正常了。

.cnblogs_code{
  width: 600px;
}
查看源文件时,发现除了
<link id="CommondCss" type="text/css" rel="stylesheet" href="http://www.cnblogs.com/css/common.css" />
<link id="MainCss" type="text/css" rel="stylesheet" href="http://www.cnblogs.com/Skins/ClearGertrude/style.css" />
以外,还增加了
<link id="SecondaryCss" type="text/css" rel="stylesheet" href="http://www.cnblogs.com/likun/customcss.aspx" />
也就是刚刚添加的自定义样式。

posted on 2008-08-31 18:18  Eric Lee  阅读(322)  评论(0编辑  收藏  举报

导航