3
The photo above represents a slider I’m doing on a page.
Each slider has an image in the middle representing the white sphere.
I want all the sliders that are formed by a li
are the same size, the same size as the largest, i.e., the orange slider.
Regardless of color, it was just an example, I want them to be the same size.
The black line represents the end of the li
orange. I want everyone else to go to the end.
I tried to...
ul{
height: 100%;
}
li{
height: 100%;
}
...but it didn’t work out.
The li(s)
has no fixed size. They just stay with the height of the object that is in the middle, sometimes the object is larger than the other and ends up giving this difference.