Div CSS creates adaptive width layout (liquid layout) (transfer)_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 12:29:49
Original
1342 people have browsed it

To make a long story short, use DIV CSS to make liquid layout (width adaptive), specifically using the "negative value outer patch" method (negative margins).
Now let’s make a three-column liquid layout

First the code for Body and outer frame:

body{margin:0;padding:0px;text -align:center;}
#wrap{margin:0 auto;text-align:left;}


The codes for the three columns are as follows:

/*Left column, fixed width*/
.wrap_l{float:left;background:#FF0000;margin-right:-150px;width:150px;border:1px solid #333;}
/*Middle column, adaptive width*/
. wrap_m{width:auto;background:#00FF00;margin:0 140px 0 150px;border:1px solid #000;}
/*Right column, fixed width*/
.wrap_r{float:right;background: #0000FF;margin-left:-140px;width:140px;border:1px solid #999;}


Here, the framework is completed, the following is the complete code:








[Example] div css creates adaptive width layout (Liquid Layout) - Abloxo.com | Oeye.cn







This is the left part

This This is the left part

This is the left part



This is the right part

This is the right part

This is the right part



This is the middle part
The left side of the middle

The right side of the middle

This Is the middle part





source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template