如何让html中加入的内容居中
时间: 2024-02-03 22:03:02 浏览: 46
html中对文本实现垂直居中的方法
要让HTML中加入的内容居中,可以使用CSS中的text-align属性。将该属性设置为“center”即可让内容居中。例如:
```html
<div style="text-align:center;">
<p>这段文字将居中显示</p>
</div>
```
你也可以将样式表单独写在一个CSS文件中,然后在HTML中引用该文件,例如:
```html
<head>
<link rel="stylesheet" href="style.css">
</head>
```
在style.css文件中,你可以这样写:
```css
.center {
text-align: center;
}
```
然后在HTML中使用该class:
```html
<div class="center">
<p>这段文字将居中显示</p>
</div>
```
阅读全文