<div>浮雕阴影</div>
<div>浮雕阴影</div>
html, body {
width: 100%;
height: 100%;
display: flex;
background: #999;
}
div {
width: 200px;
height: 200px;
margin: auto;
font-size: 108px;
white-space: nowrap;
text-align: center;
color: #999;
text-shadow:
1px 1px 1px #000,
-1px -1px 1px #fff;
}
div:nth-child(2) {
text-shadow:
1px 1px 1px #fff,
-1px -1px 1px #000;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.