Module:User:Kai/sandbox: Difference between revisions

No edit summary
Blanked the page
Tag: Blanking
 
(23 intermediate revisions by the same user not shown)
Line 1: Line 1:
local p = {}


function p.test(frame)
local root = mw.html.create("div")
:addClass("test-class")
:css({
["padding"] = "10px",
["border"] = "1px solid red",
["width"] = "100px",
["height"] = "100px",
})
return tostring(root)
end
return p