上一篇
html如何将标题居中
- 行业动态
- 2024-04-05
- 3
要将标题居中,可以使用HTML的<center>
标签或者CSS样式,这里给出两种方法:
方法1:使用<center>
标签
<!DOCTYPE html> <html> <head> <style> center { textalign: center; } </style> </head> <body> <h1><center>这是一个居中的标题</center></h1> </body> </html>
方法2:使用CSS样式
<!DOCTYPE html> <html> <head> <style> h1 { textalign: center; } </style> </head> <body> <h1>这是一个居中的标题</h1> </body> </html>