0
点赞
收藏
分享

微信扫一扫

阴影文字效果

Hyggelook 2022-05-02 阅读 87
html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
  <style>
      div{
          width: 250px;
          height: 100px;
          margin: 0 auto;
          font-size: 40px;
          border-radius: 10px;
          color: #5bb5e2;
          background-color: #eab9d2;
          text-align: center;
          line-height: 75px;
          text-shadow: 10px 10px 5px rgba(0,0,0,0.4);
          box-shadow: 8px 9px 15px rgba(136,107,121,0.5);
      }
  </style>
</head>
<body>
  <div>
    犬夜叉
  </div>
</body>
</html>

在这里插入图片描述

举报

相关推荐

0 条评论