湖上湖
给你做了一个小demo。123456789101112131415161718<html> <head> <style> div { width: 300px; height: 150px; background: #f06; font: bold 150% sans-serif; text-shadow: 0 1px 2px rgba(0,0,0,.5); overflow: hidden; resize: both; color: white; } svg { width: 100%; height: 100%; pointer-events: none; } text { text-anchor: middle; pointer-events: auto; fill: currentColor; } p { font: italic 100% Georgia, serif; } </style> </head> <body> <div> <svg> <text x="50%" y="50%" dy=".3em">居中文字</text></svg> </div> </body> </html>