yogurt-is-sweet

HTML

<div class="g-box">
    <h1>CSS的世界很美</h1>
</div>

CSS

.g-box {
    width: 100%;
    height: 100%;
    background-color: #40E495;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.g-box h1 {
    font-size: 100px;
    color: white;
    font-family: "华文楷体";
    transition: 1s;
}

.g-box h1:hover {
    text-shadow: 0 1px 0 #ccc,
        0 2px 0 #ccc,
        0 3px 0 #ccc,
        0 4px 0 #ccc,
        0 5px 0 #ccc,
        0 6px 0 #ccc,
        0 7px 0 #ccc,
        0 8px 0 #ccc,
        0 9px 0 #ccc,
        0 10px 0 #ccc,
        0 11px 0 #ccc,
        0 12px 0 #ccc,
        0 20px 30px rgba(0, 0, 0, 0.5);
}

分类:

技术点:

相关文章:

  • 2021-04-03
  • 2021-11-14
  • 2021-10-24
  • 2021-08-13
  • 2021-11-14
  • 2021-04-04
  • 2021-06-30
  • 2021-11-17
猜你喜欢
  • 2021-12-12
  • 2021-10-14
  • 2021-07-31
  • 2021-10-14
  • 2021-11-04
  • 2021-05-16
  • 2021-06-16
相关资源
相似解决方案