码迷,mamicode.com
首页 > 其他好文 > 详细

经典两栏布局

时间:2018-05-13 17:57:26      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:doc   nbsp   margin   col   meta   htm   city   set   utf-8   

 1 <!DOCTYPE html>
 2 <html lang="en">
 3 
 4 <head>
 5     <meta charset="UTF-8">
 6     <title>Document</title>
 7     <style>
 8         * {
 9             padding: 0;
10             margin: 0;
11         }
12         .right{
13            position: absolute;
14             right:0;
15            width:100px;
16            height:100px;
17             background-color: red;
18             opacity: 0.5;
19         }
20         .left{
21             margin-right: 100px;
22            height:100px;
23             background-color:blue;
24         }
25     </style>
26 </head>
27 
28 <body>
29 <div class="right"></div>
30 <div class="left"></div>
31 </body>
32 
33 </html>

 



经典两栏布局

标签:doc   nbsp   margin   col   meta   htm   city   set   utf-8   

原文地址:https://www.cnblogs.com/mx2036/p/9032704.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!