这是我的CSS代码
body{
font-family: 'lucida grande' , tahoma, verdana, arian, sans-serif;
background-color:body {
background-color:#C0C0C0;
}
}背景颜色已被设置为黑色,但我希望它是灰色(C0C0C0),有什么东西可以影响或覆盖它吗?
发布于 2016-11-26 02:42:58
你不需要内部的身体块来定义背景颜色,只是外部的。
body{
font-family: 'lucida grande' , tahoma, verdana, arian, sans-serif;
background-color:#C0C0C0;
}https://stackoverflow.com/questions/40814399
复制相似问题