html css怎么让文字在页面底部居中

html-css07

html css怎么让文字在页面底部居中,第1张

1、想要让文字在底部,需要用到 position:fixedbottom:0pxleft:0px

2、想要让文字居中,需要用到 text-align:center

3、具体代码

<div class="div_foot">   

&copy2017-2018

</div>

.div_foot {

position: absolute

height: 50px

text-align: center

line-height: 50px

width: 100%

扩展资料

HTML的编辑器

1、基本文本、文档编辑软件,使用微软自带的记事本或写字板都可以编写,当然,如果你用WPS来编写,也可以。不过存盘时请使用.htm或.html作为扩展名,这样就方便浏览器认出直接解释执行了。

2、半所见即所得软件,

如:FCK-Editer、E-webediter等在线网页编辑器;

3、所见即所得软件,使用最广泛的编辑器,完全可以一点不懂HTML的知识就可以做出网页,如:

AMAYA(出品单位:万维网联盟);

FRONTPAGE(出品单位:微软);

Dreamweaver(出品单位:Adobe)。

参考资料

百度百科-HTML

首字下沉不需要设置绝对位置。

在首字加个行内标签,然后用插入内部样式(如下所设)就可以的。

希望对你有所帮助。

<div style="width:730pxpadding:8pxborder:1px dashed #e7e7e7">

<span style="padding:5pxfont-size:24ptdisplay:blockfloat:left">你</span>好吗?<div>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"

"http://www.w3.org/TR/html4/loose.dtd">

<html>

<head>

<meta http-equiv="Content-Type" content="text/htmlcharset=gb2312">

<title>无标题文档</title>

<style type="text/css">

#txt{

height:300px

width:300px

border:1px solid #333333

text-align:center

position:relative

}

#txt p{

position:absolute

bottom:0px

padding:0px

margin:0px

}

</style>

</head>

<body>

<div id=txt>

<p>aadsad</p>

</div>

</body>

</html>