Salve,

su di un sito ho trovato questa funzione per il min-Width,
qualcuno mi spiega per favore il suo funzionamento

grazie !

codice:
var winIE = (navigator.userAgent.indexOf("Opera")==-1 && (d.getElementById &&  d.documentElement.behaviorUrns))  ? true : false;

function bodySize(){
	if(winIE && d.documentElement.clientWidth) {
		sObj = d.getElementsByTagName("body")[0].style;
		sObj.width = (d.documentElement.clientWidth<760) ? "760px" : "100%";
	}
}

if(winIE) { bodySize(); }