F 
		
				
			
		FoXMorayn
Guest
		Code:
	
	<style>
    #eins {
        color:#000000;
    }
</style>
<span id="eins">eins</span>
<span id="zwei" style="color:#aaaaaa">zwei</span>
<script>
    alert(document.getElementById('eins').style.color+"eins"); // eins
    alert(document.getElementById('zwei').style.color); //firefox: rgb(170,170,170)  ie8: #aaaaaa 
</script>
	hat das nicht mal einheitlich und ohne einschränkungen funktioniert?