#"position" is not a specific layout, it is a property in CSS used to control the positioning of elements.
CSS layout refers to defining and controlling the layout and position of elements on the page through a series of layout technologies and properties.
Common CSS layout techniques include:
Block Layout: Use elements with a display attribute value of "block" or "inline-block" according to Block-level box model for layout, arranged vertically.
Flow Layout: Using the default document flow layout, when the layout method is not explicitly declared, elements are arranged from top to bottom in the order they appear in HTML. Arranged from left to right.
Flexbox layout (Flexbox): By controlling the arrangement of sub-elements through the flex attribute and container attribute, a flexible one-dimensional layout can be achieved to adapt to different screen sizes.
Grid Layout: Divide the page into grid areas through the grid container and grid item properties to achieve complex two-dimensional layout.
Multicolumn Layout: Use the column-count and column-width properties to divide text or element content into multiple columns.
These layout techniques can be used alone or in combination. Choose the most suitable layout method according to your needs. The "position" attribute is a mechanism for controlling the positioning of elements. It can be used in various layouts to change the position of an element relative to other elements or the browser window by setting different attribute values.