x
 
<!DOCTYPE html>
<html>
<head>
<style>
.center {
  text-align: center;
  border: 3px solid green;
}
</style>
</head>
<body>
<h2>居中文本</h2>
<div class="center">
  <p>这段文本是居中的。</p>
</div>
</body>
</html>