我给它居中了,为什么又不居中?总是出这样的问题有时候text-align:center;总是没效果
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>曲线阴影与翘边阴影</title>
<style type="text/css">
body{font-size: 20px;font-family: Arial;}
body,ul{margin: 0;padding: 0;list-style: none;}
.wrap{
width: 70%;
height: 200px;
margin: 50px auto;
background: #fff;
}
.wrap h1{
font-size: 20px;
text-align: center;
line-height: 200px;
}
</style>
</head>
<body>
<div id="wrap effect">
<h1>shadow effect</h1>
</div>
</body>
</html>