您的位置:首页 > 其它

让图片img标签在div里上下左右居中的方法

2013-08-02 16:07 429 查看
<!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 name="author" type="Nancle from CAU CS101" /> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>如何让img标签在div里左右上下居中</title> 
<script type="text/javascript"> 
</script> 
<style type="text/css"> 
#container{width:400px; height:400px; background:#ccc; text-align:center;} 
img{margin:100px auto 0 auto;} 
</style> 
</head> 
<body> 
<div id="container"> 
<img src="http://img.my.csdn.net/uploads/201207/14/1342258377_8375.png" width="200" height="200" /> 
</div> 
<p> 
</p> 
</body> 
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: