<style type="text/css"> .box { background-color: Yellow; border : solid 10px Red; padding : 10px 5px 5px 15px; margin : 20px 5px 5px 25px; } </style> ……中略…… <script type="text/javascript"> $(function() { var b = $('div.box'); window.alert( 'height/width:' + b.height() + '/' + b.width() + '\n' + 'innerHeight/innerWidth:' + b.innerHeight() + '/' + b.innerWidth() + '\n' + 'outerHeight/outerWidth:' +