Reflow, Repaint

Reflow

Repaint


Reflow 최적화 방법

function collect() {
	var el = document.getElementById('container');
	
	el = style.backgroundColor = 'red';
	el = style.width = '200px';
	el = style.height = '200px';

	// 위의 방식 대신에 

	el.style.cssText = 'background:red;width:200px;height:200px';

	return false;
}