.ts1 b{display: block;font-size: 100px;line-height: 1;text-align: center;-webkit-text-stroke: 1px #000; color: transparent;}
<div class="sz">01</div>
<style>
.sz{letter-spacing: 2px;font-size: 42px;font-weight: bold;color: transparent;-webkit-text-stroke: 1px #9e260e;line-height: 1;margin-bottom: 20px;}
</style>
1.1.创建一个div,用于存放需要镂空的文字
<div class="box1">
<h1>镂空效果</h1>
</div>
1.2.编写css
.box1{
width: 200px;
height: 100px;
margin: 0 auto;
font-size: 100px;
background-color: aqua;
text-align: center;
-webkit-text-stroke: 1px red; //文字描边
color: transparent; //字体颜色设置为透明
}