Open.Core.Css.AbsoluteFill C# (CSharp) Method

AbsoluteFill() public static method

Sets the given element to absolute positioning and sets all edges to 0px.
public static AbsoluteFill ( jQueryObject element ) : jQueryObject
element jQueryObject The element to update.
return jQueryObject
        public static jQueryObject AbsoluteFill(jQueryObject element)
        {
            element.CSS(Position, Absolute);
            element.CSS(Left, "0px");
            element.CSS(Top, "0px");
            element.CSS(Right, "0px");
            element.CSS(Bottom, "0px");
            return element;
        }