最近网站制作。客户做了4个语言。但是发现他要隐藏其中二个。但是日后又要放出来。我就想出来一个简单的方法。直接css选择器隐藏。这样就不用麻烦程序去改了。。
/*隐藏最后二个语言相*/
这个下面css的意思就说 选择.sub-menu 里面的最后二个li元素
.sub-menu li:nth-last-child(2)
{
background:#ff0000;display: none;
}
.sub-menu li:nth-last-child(1)
{
background:#ff0000;display: none;
}