Home  >  Article  >  Web Front-end  >  16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

WBOY
WBOYOriginal
2016-05-16 12:09:271510browse

Single row and single column

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and single column 1: Use float to float in the upper left corner, fixed width.

#content { float: left; padding: 10px; margin: 20px; background: #FFF; border: 5px solid #666; width: 400px; /* ie5win fudge begins */ voice-family: "\"}\ ""; voice-family:inherit; width: 370px; }html>body #content { width: 370px; /* ie5win fudge ends */ }

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and single column 2

: Fixed in the upper left corner, fixed width, using absolute positioning.

#content { position: absolute; top: 0px; left: 0px; padding: 10px; margin: 20px; background: #FFF; border: 5px solid #666; width: 400px; /* ie5win fudge begins */ voice -family: "\"}\""; voice-family:inherit; width: 370px; }html>body #content { width: 370px; /* ie5win fudge ends */ }

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and single column 3

: Fixed in the upper left corner, no fixed width, use percentage (%) to define the width to adapt to the page.
16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and single column 4

(recommended): fixed width, using the centering attribute (text-align: center;) defined in the body style to automatically center the page.

Single row and two columns
16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and two columns 1: Both columns have fixed width. The first column floats to the upper left corner, and the second column floats to the right of the first column.

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and two columns 2

: Both columns have percentage width, but do not fit the screen. The first column is fixed to the upper left corner, and the second column floats to the right of the first column.

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and two columns 3

: Both columns have percentage width and fill the screen. Both columns are absolutely positioned.
16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and two columns 4

: Both columns have percentage width and fill the screen. The first column floats in the upper left corner, and the second column floats in the upper right corner.

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and two columns 5

: Both columns have percentage width and fill the screen. The first column floats to the upper left corner, and the second column floats to the right of the first column.

Single row and three columns

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and three columns 1: Both the left and right columns are positioned absolutely (the right column is positioned at the top right). The left and right columns have fixed widths, and the middle column adapts to the page.

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and three columns 2

: The left column is positioned at the upper left, the right column is positioned at the upper right, and the middle column floats to the right of the left column. The left and right columns have fixed widths, and the middle column adapts to the page.
16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and three columns 3

: All three columns are absolutely positioned. The left and right columns have fixed widths, and the middle column adapts according to the content.
16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and three columns 4

(recommended): Similar to style 2, except that the margin: 20px attribute is added to the body style, which solves the problem of the middle column being on top in Netscape 6.0.
16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Single row and three columns 5

: The left and right columns are absolutely positioned, and the middle column is adaptive. Full screen width.

Three columns in the top row
16 Examples of Very Good Basic CSS Layouts_Basic Tutorial

Three columns in the top row 1(recommended): The top row adapts to the page width. The left and right columns are absolutely positioned, and the middle column is adaptive to the page.

16 Examples of Very Good Basic CSS Layouts_Basic Tutorial
  • Top row three columns 2
: full screen width

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn