左两行右一行的布局(仅限三个div)

用三个div做一个类似下图的布局:

左两行右一行的布局(仅限三个div)_第1张图片

DOCTYPE html >
<html>
    <head>
        <meta charset="utf-8" />
        <title>get objects by classtitle>
        <style type="text/css">
        div{ background:#ccc}
        .no1{margin-bottom: 10px;}
        .no1,.no2{ width:100px; height:100px; float:left }
        .no2{ clear:both;}
        .no3{ margin-left:110px; *margin-left:107px; width:200px; height:210px }
        style>
    head>
    <body >
       
        <div class="no1">111div>
        <div class="no2">222div>
        <div class="no3">333div>
    body>
html>
做这个布局有两个要点:
1。第二个div要清除浮动
2.考虑到IE6经常出现的三像素文本慢移,所以用IE6可识别的*做hack.

转载于:https://www.cnblogs.com/ron123/p/3810481.html

你可能感兴趣的:(左两行右一行的布局(仅限三个div))