Make division image responsive

前端 未结 5 762
借酒劲吻你
借酒劲吻你 2021-01-16 06:49

I am stuck in making images inside background of a class responsive.The website url .

It would be very helpful if you could help me out i am using bootstrap and nivo

5条回答
  •  渐次进展
    2021-01-16 07:35

    Change the css in nivo-slider.css from:

    .nivoSlider img {
        position:absolute;
        top:0px;
        left:0px;
        width:100%;
        height:100%
    }
    

    To

    .nivoSlider img {
        position:absolute;
        top:0px;
        left:0px;
    
    /* now this is the important things for your problem */
        vertical-align: baseline !important;
        max-width: none !important;
    }
    

提交回复
热议问题