Home >Web Front-end >CSS Tutorial >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 */ }
Single row and single column 2
#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 */ }
Single row and single column 3 Single row and single column 4
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.
Single row and two columns 2
Single row and two columns 3 Single row and two columns 4
Single row and two columns 5
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.
Single row and three columns 2 Single row and three columns 3 Single row and three columns 4 Single row and three columns 5
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.
: full screen width