, CSS. , , JavaScript (, jQuery), . , . :
$.fn.fitTo = function(target){
var $el = $(this);
$(target).bind('refit', function(){
$el.width(this.clientWidth);
});
}
$header.fitTo($content), refit . , , , ...
$content.trigger('refit');
... reset clientWidth , . .