【发布时间】:2013-03-29 04:25:35
【问题描述】:
这是我的代码,我试图让它在页面中间居中
<!DOCTYPE html>
<html lang="en">
<head>
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<title>cp</title>
</head>
<body>
<div class="well">
<font face="arial" size="5" color="#000000"><center><b>Control Panel</font></center>
</div>
</style>
<style type="text/css">
.span12{
background: lightblue;
color: while;
padding: 9px 0;
border-radius:5px;
text-align: center;
border: 1px #00BFFF solid;
margin: 0px auto;
width: 50%;
margin-top: 25%;
}
</style>
<div class="span12">
Welcome
</div>
<script src="js/bootstrap.js"></script>
它会随着页面重新调整大小,但我无法将整个内容放在页面的中心。 我只想把整个东西放在页面中间
【问题讨论】:
-
你也想让它垂直居中吗?
-
那个未闭合的中心标签是干什么用的?
标签: css alignment margin center