Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ウィンドウの高さで div を作成したいのですが、高さを自動アップグレードできますか?
$(document).ready(function() { var hpd = $(document).height(); var hph = $(".header").height(); $('.wrapper').css({height: hpd }) $('.contenido').css({height: hpd-hph-1 }) });
これを試して
$(document).ready(function(){ $(window).resize(function(){ $(".example").height ($(this).height()); }); });