var head = document.getElementById( "box" ); // alert( head.style.background )
// alert( head.style.cssFloat || head.style.styleFloat ) // 取得float不一樣
// head.style.fontSize = "30px"
head.style.color = "#f00";
// (typeof head.style.cssFloat != "undefined" ) ? head.style.cssFloat = "right" : head.style.styleFloat = " right" 跨瀏覽器設定float
// var style = ( window.getComputedStyle ? window.getComputedStyle( head,null ) : null ) || head.currentStyle; 跨瀏覽器取得計算之後的樣式
// alert( style.fontSize )
// 這樣可以取得到內聯與連結
// 因為計算後的樣式會駐留在瀏覽器的計算樣式裡面所以就可以取得