HTML里面的p标签怎么居中
可以通过以下两种方式使p标签居中:
- 使用CSS样式设置p标签的居中:
<style>
p {
text-align: center;
}
</style>
- 在p标签内部使用center标签:
<p><center>这是居中的文本</center></p>
原文地址: https://www.cveoy.top/t/topic/fnR9 著作权归作者所有。请勿转载和采集!
安全问答是一个知识全球问答,包含丰富的问答知识
可以通过以下两种方式使p标签居中:
<style>
p {
text-align: center;
}
</style>
<p><center>这是居中的文本</center></p>
原文地址: https://www.cveoy.top/t/topic/fnR9 著作权归作者所有。请勿转载和采集!