双飞翼布局和圣杯布局都属于三列布局的经典布局
    双飞翼布局是由淘宝团队发明的,圣杯布局是外国人发明的,两者效果类似,但是实现方法不同,具体效果如下:
    1-4、双飞翼布局和圣杯布局的区别是什么? - 图1

    1. <!DOCTYPE html>
    2. <html>
    3. <head>
    4. <meta charset="utf-8" />
    5. <title>圣杯布局</title>
    6. <style>
    7. #bd{
    8. padding: 0 200px 0 180px;
    9. height: 100px;
    10. }
    11. #middle{
    12. float: left;
    13. width: 100%;
    14. height: 500px;
    15. background:blue;
    16. }
    17. #left{
    18. float:left;
    19. width:180px;
    20. height:500px;
    21. margin-left:-100%;
    22. background: #0c9;
    23. position: relative;
    24. left: -180px;
    25. }
    26. #right{
    27. float: left;
    28. width: 200px;
    29. height: 500px;
    30. margin-left: -200px;
    31. background: #0c9;
    32. position: relative;
    33. right: -200px;
    34. }
    35. </style>
    36. </head>
    37. <body>
    38. <div id="bd">
    39. <div id="middle">middle</div>
    40. <div id="left">left</div>
    41. <div id="right">right</div>
    42. </div>
    43. </body>
    44. </html>
    1. <!DOCTYPE html>
    2. <html>
    3. <head>
    4. <meta charset="UTF-8" />
    5. <title>双飞翼布局</title>
    6. <style>
    7. #center {
    8. float: left;
    9. width: 100%; /*左栏上去到第一行*/
    10. height: 100px;
    11. background: blue;
    12. }
    13. #left {
    14. float: left;
    15. width: 180px;
    16. height: 100px;
    17. margin-left: -100%;
    18. background: #0c9;
    19. }
    20. #right {
    21. float: left;
    22. width: 200px;
    23. height: 100px;
    24. margin-left: -200px;
    25. background: #0c9;
    26. }
    27. /*给内部div添加margin,把内容放到中间栏,其实整个背景还是100%*/
    28. #inside {
    29. margin: 0 200px 0 180px;
    30. height: 100px;
    31. }
    32. </style>
    33. </head>
    34. <body>
    35. <div id="center">
    36. <div id="inside">middle</div>
    37. </div>
    38. <div id="left">left</div>
    39. <div id="right">right</div>
    40. </body>
    41. </html>