码迷,mamicode.com
首页 > Web开发 > 详细

css实现网站上图片上下居中显示

时间:2016-07-02 23:05:17      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:css实现图片上下居中

<!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>无标题文档</title>
<style type="text/css">
    
    body,div,span{margin:0; padding:0;}
    
    /*第一种解决办法(建议使用这个,兼容性更好)*/
    
    #aaa{height:400px; width:400px; background:#CFC; text-align:center;}
    #img2{ height:100%;border:0; width:0; display:inline-block;}
    #aaa img{ vertical-align:middle; max-width:400px; max-height:400px;margin-left:-2px;border:0;}
    
    
    /*第二种解决办法*/
    
    #bbb{height:400px; width:400px; background:green;margin-top:20px; text-align:center; }
    #bbb span{ height:51.5%;width:0;border:0; display:inline-block;}
    #bbb img{ vertical-align:middle; max-width:400px; max-height:400px;margin-left:-4px;border:0;}
    
    
    /*第三种解决办法*/
    
    #ccc{height:400px; width:400px; background:orange;margin-top:20px; text-align:center; }
    #ccc i{ height:100%;width:0;border:0; display:inline-block; vertical-align:middle;}
    #ccc img{ vertical-align:middle; max-width:400px; max-height:400px;margin-left:-4px;border:0;}
    
    
</style>
</head>

<body>

<!--第1种解决办法-->
<div id="aaa">
    <img id="img2" />
    <a href="">
        <img src="2.jpg" />
    </a>
</div>

<!--第2种解决办法-->
<div id="bbb">
    <span></span>
    <a href="">
        <img src="2.jpg" />
    </a>
</div>

<!--第3种解决办法-->
<div id="ccc">
    <i></i>
    <a href="">
        <img src="2.jpg" />
    </a>
</div>

其他复杂方法参考网站:http://bbs.blueidea.com/thread-2666987-1-1.html

</body>
</html>

本文出自 “码神来帮忙” 博客,转载请与作者联系!

css实现网站上图片上下居中显示

标签:css实现图片上下居中

原文地址:http://sr1260.blog.51cto.com/7743502/1795158

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!