Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个background-imagefor body。我想删除 s 中的这个背景图像div。
background-image
body
div
只有CSS可以吗?
我试过了
div{ background-image:none; }
默认情况下,HTML 元素具有透明背景。因此,如果您只是想覆盖身体的背景,您可以将背景设置为div:
div { background-color: #fff; }
这就像用一张纸盖住一张照片。