内层图片元素高度自适应,外层盒子高度如何保持跟图片高度一致?

image.png
外层高度不确定的情况下,想要跟内层图片高度保持一致,内层图片高度设为width:100%;height:auto;外层box高度也是width:100%;height:auto.为什么会比图片本身到高度超出去一部分呢?
外层box如何可以跟内层不确定高度的图片高度保持一致呢?

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0" />
        <title>height auto</title>
        <style>
            .container {
                width: 100%;
                height: auto;
                background-color: aquamarine;
            }
            img {
                width: 300px;
                height: auto;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <img src="./猫咪咪.jpg" alt="" />
        </div>
    </body>
</html>
阅读 3.8k
1 个回答

img设置
vertical-align: bottom;

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏