【发布时间】:2017-09-06 23:42:43
【问题描述】:
是否可以同时拥有带有背景图像和内阴影的文本?
div{
position:fixed;
z-index: 2;
color: white; /* Fallback: assume this color ON TOP of image */
background: url('https://placekitten.com/g/500/500') repeat;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 100px;
font-weight: 800;
text-transform: uppercase;
text-shadow: 2px 3px 8px rgba(59, 37, 17, 0.35) inset;
}
<div>
CAN I HAVE AN IMAGE AND INNER SHADOW?
</div>
【问题讨论】: