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

盒子模型

时间:2016-12-18 23:58:06      阅读:351      评论:0      收藏:0      [点我收藏+]

标签:float   image   margin   oat   png   org   pre   css   img   

每个div 都是一个盒子,

技术分享

 

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 5 <title>无标题文档</title>
 6 
 7 <style type="text/css">
 8 /*
 9 body{
10     margin:0px;
11 }
12 */
13 div{
14     border:#09F solid 1px;
15     height:100px;
16     width:200px;/**/
17 
18 }
19 
20 #div_1{
21     /*border-bottom:#F60 2px dashed;*/
22     background-color:#F90;
23     /*padding:20px 100px 200px 300px;上 右 下 左
24     margin:0px;*/
25     float:left;
26 }
27 #div_2{
28     background-color:#0CF;
29     float:left;
30     
31 }
32 #div_3{
33     background-color:#3F0;8
34     clear:left;/**/
35     
36 }
37     
38 </style>
39 
40 </head>
41 
42 <body>
43 
44 <div id="div_1">
45 第一个盒子11第一个盒子11
46 </div>
47 <div id="div_2">
48 第二个盒子22
49 </div>
50 <div id="div_3">
51 第三个盒子33
52 </div>
53 
54 
55 </body>
56 </html>

 

盒子模型

标签:float   image   margin   oat   png   org   pre   css   img   

原文地址:http://www.cnblogs.com/kingxiaozi/p/6195576.html

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