纯css实现水平和垂直居中
有时候我们需要实现一个水平居中和垂直居中的效果。例如你想做一个网页版的PPT,你希望演示的内容区域总是居中。这里介绍一个纯css实现。
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>水平和垂直居中</title><style type="text/css">body {padding: 0;margin: 0;}#wrapper {width: 960px;margin: 10px auto;border: 1px solid #efefef;height: 600px;position: relative;}#content {width: 600px;height: 400px;position: absolute;left: 50%;top: 50%;margin: -200px 0px 0px -300px;border: 1px solid #343434;}</style></head><body><div id="wrapper" class="clearfix"><div id="content"></div></div></body></html>