如何通过透明文本显示阴影?

问题描述 投票:-5回答:1

如果没有图像/路径,我将如何实现这种外观?

我需要带有粗边框的文字和不会透过透明文字显示的阴影。

我已经尝试过正常的text-shadow,但它没有按照我需要的方式工作。

我尝试使用SVG,但它没有提供我需要的灵活性,对图像也是如此。

css html5 text
1个回答
-1
投票

* {
    box-sizing: border-box;
    font-family: inherit;
}

html {
    font-size: 62.25%;
}

body {
    font-family: sans-serif;
    font-size: 1.6rem;
    background: linear-gradient(to right, rgb(0, 128, 111), rgb(199, 189, 57));
}

h1 {
    background: transparent;
    color: transparent;
  font-family: sans-serif;
  font-size: 50px;
  font-weight: bold;
  text-shadow: 3px 3px 0 rgb(54, 54, 54);
  
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgb(0, 0, 0);

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
	
}
<h1>Hello World</h1>
© www.soinside.com 2019 - 2024. All rights reserved.