Dev: Elements tool

This commit is contained in:
surunzi
2016-03-15 21:58:29 +08:00
parent 6987451ba0
commit a3d8d6ef32
27 changed files with 2236 additions and 370 deletions

7
eustia/evalCss.js Normal file
View File

@@ -0,0 +1,7 @@
evalCss = function (css)
{
var style = document.createElement('style');
style.textContent = css;
style.type = 'text/css';
document.body.appendChild(style);
};