温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2020-07-06 13:46:45 来源:网络 阅读:289 作者:爱着你的爱 栏目:开发技术

<!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>

附件:http://down.51cto.com/data/2367866
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI