How to keep responsive images same height?

后端 未结 3 1856
时光说笑
时光说笑 2021-01-02 21:55

I have a webpage that I\'m making, and I have one row with a cover photo and profile picture side-by side. I have them both in a bootstrap row in different-sized grids. But,

3条回答
  •  粉色の甜心
    2021-01-02 22:13

    use min-height on them

    try

    img {
    min-height:100%
    }
    

    if that doesn't work use a fixed max-height

    img {
    min-height:4em;
    }
    

提交回复
热议问题