📜  如何使用 css 代码示例使背景更暗

📅  最后修改于: 2022-03-11 14:47:34.595000             🧑  作者: Mango

代码示例2
body {
    display: grid;
    place-items: center;
    height: 100vh;
}
div {
    width: 50vw;
    height: 50vh;
    background: linear-gradient(to bottom right, #55566a, #282834);
    border-radius: 10px;
}