无论内容如何,如何始终将容器水平和垂直居中?下面是我正在尝试做的一个基本示例。
这种方法是否正确,或者我的问题有更简单的解决方案吗?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>3 columns</title>
<style>
div.container {
height: 200px;
width: 100%;
margin-left: auto;
margin-right: auto;
margin-top: 25%;
margin-bottom: 20%;
}
div.col {
float: left;
width: 25%;
}
</style>
</head>
<body>
<div class="container">
<div class="col" align="center">This is col 1</div>
<div class="col" align="center">This is col 2</div>
<div class="col" align="center">This is col3</div>
</div>
</body>
</html>