Home > Web Front-end > CSS Tutorial > Detailed explanation of CSS responsive layout compatible with IE6 method code

Detailed explanation of CSS responsive layout compatible with IE6 method code

高洛峰
Release: 2017-03-23 10:58:57
Original
1743 people have browsed it

1. Two-column layout, fixed width on the left, adaptive on the right

<div class="grid1">
    <div class="left_1">左侧定宽</div>
    <div class="right_1">右侧自适应</div>
</div>
Copy after login


.left_1{float:left; width:200px;}
.right_1{margin-left:200px;}
Copy after login

2. Two-column layout, adaptive on the left, fixed width on the right

<div class="grid2 clearfix">
    <div class="left_2">左侧自适应</div>
    <div class="right_2">右侧定宽</div>
</div>
Copy after login
.left_2{float:left; width:100%; margin-right:-200px;}
.right_2{float:right; width:200px;}
Copy after login

3. Three-column layout, fixed width on both sides, adaptive in the middle

<div class="grid3 clearfix">
    <div class="left_3">左侧定宽</div>
    <div class="center_3">中间自适应</div>
    <div class="right_3">右侧定宽</div>
</div>
Copy after login
.left_3, .right_3{position:relative; float:left; width:200px;}
.left_3{margin-right:-200px;}
.right_3{margin-left:-200px;}
.center_3{float:left; width:100%;}
Copy after login

4. Three-column layout, adaptive on the left, fixed width in the middle and right side

<div class="grid4 clearfix">
    <div class="left_4">左侧自适应</div>
    <div class="center_4">中间定宽</div>
    <div class="right_4">右侧定宽</div>
</div>
Copy after login
.center_4, .right_4{position:relative; float:right; width:200px;}
.left_4{float:left; width:100%; margin-right:-400px;}
Copy after login

5. Three-column layout, left Side and middle fixed width, right side adaptive

<div class="grid5">
    <div class="left_5">左侧定宽</div>
    <div class="center_5">中间定宽</div>
    <div class="right_5">右侧自适应</div>
</div>
Copy after login
.left_5, .center_5{position:relative; float:left;width:200px;}
.right_5{margin-left:400px;}
Copy after login

Detailed explanation of CSS responsive layout compatible with IE6 method code

The above writing method is compatible with 5 major browsers, and IE6 to IE8 browsers

The above is the detailed content of Detailed explanation of CSS responsive layout compatible with IE6 method code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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