html 如何让div居中
画一个,长为778px高为250px的方框(id命名为header)相对整个页面居中背景颜色为#999999边框一个px实心边框边框颜色为红色求html和CSS完整代码,...
画一个,长为778px 高为250px的方框 (id命名为header)
相对整个页面居中
背景颜色为#999999 边框一个px 实心边框 边框颜色为红色
求html和CSS完整代码,自己写的试了各种方式都不行 展开
相对整个页面居中
背景颜色为#999999 边框一个px 实心边框 边框颜色为红色
求html和CSS完整代码,自己写的试了各种方式都不行 展开
展开全部
DIV居中提供两个方法:
1、简单快捷方法就是加<center>内容</center>标签。
示例:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>center居中</title>
</head>
<body>
<center>
<div>我要居中啦</div>
</center>
</body>
</html>
2、div中加入margin:0 auto属性;自动调节居中。
示例2:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>margin居中</title>
<style type="text/css">
.d1{
border:1px solid red;
width:200px;
height:200px;
text-align:center;
line-height:40px;
margin:0 auto;
}
</style>
</head>
<body>
<div class="d1">
我是div,我居中啦...
</div>
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2017-09-13
展开全部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
body{
height: 650px;
}
#header{
position: relative;
width: 778px;
height: 250px;
border: 1px solid red;
background-color: #999;
margin: 0 auto;
top:50%;
margin-top:-125px;
}
</style>
</head>
<body>
<div id="header">
</div>
</body>
</html>
水平居中 margin: 0 auto;
垂直居中 需要给父级设置高度 这里是body
position: relative;
top:50%;
margin-top:-125px;
这是控制垂直居中的代码
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
html,body{ margin:0px; padding:0px;}
.header{ width:778px; height:250px; background-color:#999999; border:1px solid red; position:absolute; top:0px; right:0px; bottom:0px; left:0px; margin:auto;}
</style>
</head>
<body>
<div id="header" class="header">
</div>
</body>
</html>
以上是我比较常用的方法,不论header宽高如何变化,都会居中,还有一些别的方法,见http://tieba.baidu.com/p/2743929001
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style>
html,body{ margin:0px; padding:0px;}
.header{ width:778px; height:250px; background-color:#999999; border:1px solid red; position:absolute; top:0px; right:0px; bottom:0px; left:0px; margin:auto;}
</style>
</head>
<body>
<div id="header" class="header">
</div>
</body>
</html>
以上是我比较常用的方法,不论header宽高如何变化,都会居中,还有一些别的方法,见http://tieba.baidu.com/p/2743929001
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<style type="text/css">
#header{width:778px; height:250px; margin:10px auto; text-align:center; background-color:pink;}
/*对于定宽的div,可以用margin:0px auto进行div整体居中,text-align:center;用于在div内的文本居中*/
</style>
<div id="header">
abc<br />
defabcdea<br />
This is a book.
</div>
#header{width:778px; height:250px; margin:10px auto; text-align:center; background-color:pink;}
/*对于定宽的div,可以用margin:0px auto进行div整体居中,text-align:center;用于在div内的文本居中*/
</style>
<div id="header">
abc<br />
defabcdea<br />
This is a book.
</div>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询