标签: html css
我身高100%。还有两个孩子。有可能:
答案 0 :(得分:2)
一旦dom准备就绪,你可以用jQuery做到这一点
$(document).ready(function(){ $('#second').css({ 'height': ($('body').height() - $('#first').height()) + 'px' }); });