Module:User:Kai/sandbox

Revision as of 20:22, 27 August 2026 by Kai (talk | contribs)

Documentation for this module may be created at Module:User:Kai/sandbox/doc

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