css 文字边框
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Opacity Fade Animation</title> <style> .text-border { margin-left: 20px; color: white; /* 文字颜色 */ font-size: 40px; text-shadow: -1px -1px 0 #D9D9D9, 1px -1px 0 #D9D9D9, -1px 1px 0 #D9D9D9, 1px 1px 0 #D9D9D9; /* 边框宽度和颜色 */ } </style> </head> <body> <div class="text-border">带16-1框的文字</div> </body> </html>