介绍使网页中的文字在底部居中显示的方法。
工具 CSS
方法和步骤
1创建一个div:
<div >
</div>
2给该div命名,例如:master
<div id="master" >
</div>
3输入要居中显示的文字,例如:©2017 HZW
<div id="master" >
©2017 HZW
</div>
4添加style标签
<style type="text/css" >
</style>5在标签中添加样式:
<style type="text/css" >
#master {
position:absolute;
left:50%;
bottom:0;
text-align :center;
}
</style>
6设置成功
顶一下
(0)
0%
踩一下
(0)
0%
- 相关评论
- 我要评论
-