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