在一个网站上,有2种语言安装。中文(中文)和英文(英文)。两个身体都有不同的等级。
中国人
<body class="front not-logged-in one-sidebar sidebar-left i18n-zh-hans">英语
<body class="front not-logged-in one-sidebar sidebar-left i18n-en">我想给中文版一些不同的款式。所以我想我要改变这个:
body
{
background-color:#f4f4f4;
background-image:url(images/margins.jpg);
background-position:center;
background-repeat:repeat-y;
margin: 0;
padding: 10px;
width: auto !important;
}对此:
body .i18n-zh-hans
{
color: red;
}用于以红色显示中文文本(只是一个例子)。但出于某种原因,它不起作用。我的声明是错的吗?
提前感谢
发布于 2011-04-19 09:34:59
删除身体和类之间的空间:
body.i18n-zh-hanshttps://stackoverflow.com/questions/5714322
复制相似问题