var fDesc=new Array(); fDesc[0] = "EclipseStyle is a nice an easy to use CSS editor for web developers. What makes this style sheet generator different from the rest? If you have to make changes, and you don't know the names and values of all of the CSS attributes, or you don't know the location of every class in the file, EclipseStyle can help you. The preview window show the changes you´ve made without requiring refreshment, the tabbed interface is very well organized. This program also includes an introduction to stylesheets. The Code window shows you how your style looks like.
A minimal knowledge of stylesheets is required. Once you understand the basic concepts, it is easy to create and modify stylesheets and web pages. You have to be aware of a fact when putting a web application in production: the client must load the files quickly. Among other things this means that CSS files should be compressed, and their properties written using shorthand attributes. EclipseStyle doesn't have these features. All the properties you can see in the editor are "read only", so you have to save the classes in a file an edit them outside the editor, which is a pity."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }