为什么CSS里的多个id选择器只有第一个有效,帮我看看哪里错了
发布网友
发布时间:2024-01-01 06:17
我来回答
共4个回答
热心网友
时间:2024-10-11 16:43
#div1{width:200px;height:200px; background:#060};
#div2{width:400px;height:200px; background:red};
#div3{width:200px;height:200px; background:#060};
这三行后面的分号去掉
热心网友
时间:2024-10-11 16:40
id名称不可以是div1,div2,div3,你可以起其他名称!
热心网友
时间:2024-10-11 16:47
孩子。。谁教你在css花括号外面还有;号的啊。。 div1{width:200px;height:200px; background:#060};这个分号不要。。。
热心网友
时间:2024-10-11 16:40
亲 样式要写对
#div1{width:200px;height:200px; background:#060};
#div2{width:400px;height:200px; background:red};
#div3{width:200px;height:200px; background:#060};
每一句结尾是不需要‘;’它的;
#div1{width:200px;height:200px; background:#060}
#div2{width:400px;height:200px; background:red}
#div3{width:200px;height:200px; background:#060}
id是可以为div1,div2的