<!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"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> | |
<title>CSS div的完整居中实例</title> | |
<style type="text/css"> | |
<!-- | |
body{ text-align:center; margin:0 auto; background: url(http://www.divcss5.com/img/css-logo.gif) no-repeat center;} | |
.waicheng {color: #0066CC; margin:5px auto; width:700px; height:120px; line-height:120px; border:1px solid #000000; } | |
.waicheng img {vertical-align:middle;} | |
--> | |
</style> | |
</head> | |
<body> | |
<div class="waicheng">我是css中的居中的完整居中实例;我的布局外层有一个边为1px </div> | |
</body> | |
</html> |