div+css 文本定位问题 用户名和密码怎么定位到网页中间
小弟写的html<!DOCTYPEHTMLPUBLIC"-//W3C//DTDHTML4.01//EN"<html><head><metahttp-equiv="cont...
小弟写的html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="GB2312"/>
<title>This is my blog</title>
<link rel="stylesheet" href="../css/master.css" type="text/css">
</head>
<body>
<div id="content">
<div class="tabl">
<table>
<form>
<tr>
<td>用户名:<input type="text"></td>
</tr>
<tr>
<td>密 码:<input type="password"></td>
</tr>
</form>
</table>
</div>
</div>
</body>
</html>
小弟写的css
body
{
margin:0;
padding:0;
border:0
background-position:absolute;
background-image:url("../image/bg.png");
background-repeat:no-repeat;
}
#content
{
margin:0;
padding:0;
background-image:url("../image/dlk.png");
background-position:400px 210px;
background-repeat:no-repeat;
width:1440px;
height:799px;
z-index:-1;
}
.tabl
{
position:100px 100px;
z-index:1;
} 展开
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
<html>
<head>
<meta http-equiv="content-type" content="text/html" charset="GB2312"/>
<title>This is my blog</title>
<link rel="stylesheet" href="../css/master.css" type="text/css">
</head>
<body>
<div id="content">
<div class="tabl">
<table>
<form>
<tr>
<td>用户名:<input type="text"></td>
</tr>
<tr>
<td>密 码:<input type="password"></td>
</tr>
</form>
</table>
</div>
</div>
</body>
</html>
小弟写的css
body
{
margin:0;
padding:0;
border:0
background-position:absolute;
background-image:url("../image/bg.png");
background-repeat:no-repeat;
}
#content
{
margin:0;
padding:0;
background-image:url("../image/dlk.png");
background-position:400px 210px;
background-repeat:no-repeat;
width:1440px;
height:799px;
z-index:-1;
}
.tabl
{
position:100px 100px;
z-index:1;
} 展开
5个回答
2014-08-02
展开全部
直接table 写上一个宽度 加个 align="center" 不管你外面是什么 都居中了,还有#content 是table的外部div 所以也要把他先居中了来。还有那个index 在里面完全没有,因为他没有position fixed或者absolute
<style>
#content{
margin:0 auto;/*这句居中*/
padding:0;
background-image:url("../image/dlk.png");
background-position:400px 210px;
background-repeat:no-repeat;
width:1440px;
height:799px;
}
</style>
<div id="content">
<table width="500" align="center">
....
</table>
</div>
2014-07-31
展开全部
在css的.table内加入 margin: 0px auto;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
给table加一个css
margin:0 auto;
margin:0 auto;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<td align="center">用户名:<input type="text"></td>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我帮你弄弄看看
追问
好的 谢谢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询