View Single Post
  #1  
Old 03-22-2006, 08:37 PM
nacho's Avatar
nacho nacho is offline
SEO Junior
 
Join Date: Aug 2005
Location: Spain
Posts: 18 nacho is on a distinguished road
certain composed attributes

Code:
var	message=document.createElement('div');
	message.style.position="absolute";
	message.style.width="200";
	message.style.height="70";		
	message.style.left=200;
	message.style.top=50;	
	message.innerHTML='hello';
document.getElementsByTagName('body').item(0).appe  ndChild(mensaje);

In this code I show a "hello" message.
I am not able, however, to edit certain composed attributes.
Code:
	message.style.background-color="#0066FF";
	message.style.z-index=2;

This two sentences give error.
How can I bypass the problem?
Thanks a lot.
__________________
Reply With Quote