htmlcss文字居中代码
时间: 2023-09-20 13:03:32 浏览: 103
html居中问题
可以使用以下代码实现文字居中:
```html
<div style="text-align: center;">
<p>居中的文字</p>
</div>
```
或者将样式写在 CSS 文件中:
```css
.center {
text-align: center;
}
```
然后在 HTML 中使用:
```html
<div class="center">
<p>居中的文字</p>
</div>
```
阅读全文