【发布时间】:2021-05-20 09:02:53
【问题描述】:
我想将我的风格应用到所有东西上,而不仅仅是身体
style.css:
body {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}
【问题讨论】:
-
然后使用通用选择器
*
我想将我的风格应用到所有东西上,而不仅仅是身体
style.css:
body {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}
【问题讨论】:
*
将body 替换为html
html {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}
您也可以使用*,因为* 选择器会选择所有元素。
* {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}
【讨论】:
把 CSS 改成:
html {
background-color: #3F3F46;
color: #ffffff;
cursor: url('https://lelkasa.github.io/cursourcustom.png'), auto;
}
【讨论】: