Skip to content Skip to sidebar Skip to footer

Nivo Slider Custom Height/width Problems

I have searched for a resolution to my problem, but have not yet been successful. I have images of different sizes in Nivo Slider, but I need to create a viewport that displays the

Solution 1:

If I understand correctly what you want to achieve is something like this (uncommenting /*overflow: hidden;*/): DEMO

HTML:

<div><imgsrc="http://i.imgur.com/cjgKmvp.jpg"/></div>

CSS:

div{
    position: relative;
    margin: 100px auto;
    width: 400px;
    height: 300px;
    border: 3px solid red;
    /*overflow: hidden;*/
}

img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
}

Note: I comment overflow: hidden; so you can see how the image is positioned.

Post a Comment for "Nivo Slider Custom Height/width Problems"