图片水平垂直居中不行

来源:6-1 line-height的实际应用

MIT的梦

2017-03-17 16:29

<html>
<head>
    <style>
        .content{
            width: 800px;
            background-color: #cccccc;
            margin: 0 auto;
            height: 300px;
        }
        .box {
            line-height: 500px;
            text-align: center;
        }
        .box > img{
            vertical-align: middle;
        }
    </style>
</head>
<body>
    <div class="content">
        <div class="box">
            <img src="1.jpg"/>
        </div>
    </div>
</body>
</html>

为什么我的不能实现垂直居中?

写回答 关注

2回答

  • 慕前端7813125
    2018-11-19 16:56:13

    在.box这个div里,img标签后加一个&nbsp试一下

  • MIT的梦
    2017-03-17 16:30:43

    有一处写错  height: 500px;  

CSS深入理解之line-height

带领大家深入理解line-height的定义,还有实际应用经验分享

43086 学习 · 64 问题

查看课程

相似问题