文字居中,在word文档中怎么把文字设置成水平与垂直居中?

在word的快捷菜单和页面布局中可将文字设置成水平与垂直居中 , 具体操作请参照以下步骤文字居中 。

文字居中,在word文档中怎么把文字设置成水平与垂直居中?

文章插图
1、在电脑上打开一个Excel文件 , 进入主编辑页面 。
文字居中,在word文档中怎么把文字设置成水平与垂直居中?

文章插图
2、然后在编辑区域输入文字信息 , 然后用鼠标选中文字内容 。
3、然后点击经典菜单中的“居中”快捷图标 , 将文字内容进行水平居中设置 。
4、然后在菜单栏中点击“页面布局” , 在其页面找到“页面设置”区域 , 然后点击页面设置中右下角的小图标 。
5、然后在页面设置对话框的“版式”页面将垂直对齐方式设置为“居中” , 点击确定后即可对文字进行垂直居中设置 。
6、完成以上设置后 , 即可在word文档中把文字设置成水平与垂直居中 。
怎样让css+div文字垂直居中line-height通常是用于调节一段文字的行与行之间的距离 , 或者说两行文字之间的距离 , 如果行高 是500px , 那么每一行中的文字距离本行的顶部就是250px , 如果将文字的行高设为500px , 并且外面的容器的高度也为500px , 同样可以实现垂 直居中 , 但是用它来实现垂直居中 , 也是有缺点的 , 就是如果内容过多 , 文字就会跑到下一行 , 那么内容就不可能垂直居中了 。
HTML代码:
<h1>Hi, I\’m<span>Vertically Aligned</span> Within the H1</h1>
CSS代码:
body {
margin: 0;
padding: 0;
background: #1d1d1d;
font-size: 10px;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
h1 {
font: 3em Georgia, \”Times New Roman\”, Times, serif;
color: #fff;
height: 500px;
line-height: 500px;
text-align:center;
border: 10px solid #999;
}
h1 span {
font-weight: bold;
font-size:1 。
5em;
color: #fff000;
}
p {
font-size: 1 。3em;
color: #999;
}
strong {
color: #fff;
}
方法二:利用绝对定位
这个方法有个缺点我必须指出 , 就是外面的块状元素 , 必须指定高度 , 所以如果你在里面放动态的内容的话 , 后果会很糟糕滴~
HTML代码:
<div class=\”vert\”>
<h1>Hi, I\’m<span>Vertically Aligned</span></h1>
<p>Abigo sudo mara paulatim odio, accumsan luptatum nibh nibh refero metuo opes ut fatua 。
Acsi et fere similis <strong>Using</strong> augue <strong>absolute</strong> validus 。Regula <strong>positioning</strong> eu jus vel, indoles fere iaceo ea similis 。
Velit praemitto nulla vel luctus secundum 。</p>
</div>
CSS代码
这种用绝对定位来实现的垂直居中 , 取决与元素的宽度和高度 , 你可以用下面这两个公式来计算元素的左边距和上边距
元素的宽度/2 = 负左边距
元素的高度/2 = 负上边距
在这个例子中 , 我们就是这么计算的

vert {
width: 580px;
height: 190px;
position: absolute;
top: 50%;
left: 50%;
margin: -95px 0 0 -290px;
}
完整CSS代码
body {
margin: 0;
padding: 0;
background: #1d1d1d;
font-size: 10px;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
h1 {
font: 4em Georgia, \”Times New Roman\”, Times, serif;
color: #fff;
border-bottom: 5px dotted #999;
margin: 0;
padding: 0 0 10px;
}
h1 span {
font-weight: bold;
display:block;
font-size:1 。
5em;
color: #fff000;
}
p {
font-size: 1 。3em;
color: #999;
}
strong {
color: #fff;
}
。vert {
width: 580px;
height: 190px;
position: absolute;
top: 50%;
left: 50%;
margin: -95px 0 0 -290px;
}
问题延伸
如果元素的外面还有一个父级元素 , 如果才能让元素垂直居中于父级元素内部?比如下面的代码 , 多了一个父级元素
<div class=\”container\”>
<div class=\”vert\”>
<h1>Hi, I\’m Nested &amp;<span>Vertically Aligned</span></h1>
<p>Abigo sudo mara paulatim odio, accumsan luptatum nibh nibh refero metuo opes ut fatua 。
Acsi et fere similis <strong>Using</strong> augue <strong>absolute</strong> validus 。Regula <strong>positioning</strong> eu jus vel, indoles fere iaceo ea similis 。
Velit praemitto nulla vel luctus secundum 。</p>
【文字居中,在word文档中怎么把文字设置成水平与垂直居中?】</div>
</div>
这时候 , 就必须在定义父级元素的CSS代码中加入position: relative;才能够使内部元素垂直居中于父级内部 , 代码如下:

container {
position: relative;
height: 500px;
width: 800px;
border: 10px solid #999;
background: #000;
margin: 20px;
} 。