887
edits
Dicemonger (talk | contribs) (Created page with "local p = {} function p.begin(frame) return getBeginDiv(frame) end function p.div(frame) return "</div>" .. getBeginDiv(frame) end function p.stop(frame) return "</div>" end function getBeginDiv(frame) local cols = getCols(frame) local minWidth = getMinWidth(frame, cols) return "<div style=\"display:inline-table;width:" .. getWidth(cols) .. ";min-width:" .. minWidth .. ";\">" .. "<div style=\"" .. getBorder(frame) .. getBackground(frame) .. getTextAlignmen...") |
Dicemonger (talk | contribs) mNo edit summary |
||
Line 16: | Line 16: | ||
local cols = getCols(frame) | local cols = getCols(frame) | ||
return "<div style=\"display:inline-table;width:" .. getWidth(cols) .. ";min-width:" .. getMinWidth(frame, cols) .. ";\">" .. "<div style=\"" .. getBorder(frame) .. getBackground(frame) .. getTextAlignment(frame) .. getPadding(frame) .. getMargin(frame)"\">" | |||
return "<div style=\"display:inline-table;width:" .. getWidth(cols) .. ";min-width:" .. | |||
end | end | ||