jQuery Equal Height Divs

前端 未结 3 851
执念已碎
执念已碎 2020-12-06 13:50

If i have the following markup;

One
two
three
3条回答
  •  無奈伤痛
    2020-12-06 14:35

    One
    two
    three
    four
    five
    four
    six
    seven
    eight

    and in JavaScript using jQuery write :

    $(document).ready(function () {    
        $("div.parentDiv div div.sameHeight").css({ height: "100px" });
    });
    

提交回复
热议问题