0

How to relate width in percent to the grand parent?

CSS Responsive thumbnail slider

Peyman Mohamadpour
  • 17,954
  • 24
  • 89
  • 100

2 Answers2

1

You could simply relate width of li s to the parent ul which in turn it relates to the grand parent div:

div{
    overflow: hidden;
    width: 100%;
}
ul{
    width: 1000%;
}
li{
    width: 3%;
}
Peyman Mohamadpour
  • 17,954
  • 24
  • 89
  • 100
0

Use javascript:

var g = document.getElementById('grandparent');
var w = g.clientWidth;
if (w > 400)
    w *= .3;
var c = document.getElementsByClassName('child');
for (var i=0; i < c.length; i++) {
    c[i].style.width = w+'px';
}

I have a jsfiddle example.

Zectbumo
  • 4,128
  • 1
  • 31
  • 26