<!DOCTYPE html>
<html>
<head>
<title>
CSS text-stroke property
</title>
<style>
body{
text-align: center;
}
.jtp {
color: white;
font-size: 50px;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: red;
}
</style>
</head>
<body>
<h1 class= "jtp">欢迎来到立地货平台</h1>
<h2 class= "jtp" style= "-webkit-text-stroke-color: blue;">这是text-stroke属性示例</h2>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>
CSS text-stroke property
</title>
<style>
body {
text-align: center;
}
.jtp {
font-size: 75px;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: red;
-webkit-text-fill-color: yellow;
text-shadow: 5px 5px 6px gray;
}
</style>
</head>
<body>
<h1 class="jtp">欢迎访问bianchenghao6.com网站</h1>
<h2 class="jtp" style="-webkit-text-stroke-color: blue;">这是text-stroke属性的示例</h2>
</body>
</html>