61.css-空心文字

285 阅读1分钟

放假了,水一章,这个原理和上一期的是一样的,都是用文字阴影实现的

  <h1>空心文字</h1>
      body {
      background-color: #000;
    }

    h1 {
      font-size: 200px;
      color: #000;
      text-shadow: 1px 0#fff,
        1px 1px#fff,
        1px -1px#fff,
        0 1px#fff,
        0 -1px#fff,
        -1px 0#fff,
        -1px 1px#fff,
        -1px 1px#fff;
    }

image.png