Hi, I am a new to css. I am doing some practice with div and have a question.heres the code. html> <head><title>div</title> <style> #1{width:300;height:400;border:1px solid #000000} #a{width:150;height:150;border:1px solid #000000} </style> </head> <body> <div id="1"><div id="a"></div></div> </body></html> This experiment shows the borders in IE. but not in Firefox. How do I get them to show in ff. Thank You
put your css into an external file, makes the code easier to read as well as google does not like code bloat
yep don't name your id or class's anything that relates to css. It will produce varied outcomes on different browsers!