📜  如何在 CSS 中使背景颜色变深 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:37.930000             🧑  作者: 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;
}