码迷,mamicode.com
首页 > Web开发 > 详细

HTML 5--Position HTML Elements

时间:2018-04-29 17:45:38      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:doc   type   pre   alt   body   images   AC   ges   jpg   

1.float:

示例代码:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <style>
 5     img{
 6         float :left;
 7     }
 8     </style>
 9 </head>
10 <body>
11 <img src="html5-2/images/背景.jpg">
12 <p>wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww</p>
13 <p>eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee</p>
14 
15 </body>
16 </html>  

 

测试结果:
技术分享图片

2.clear

示例代码:

 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <style>
 5     img{
 6         float :left;
 7     }
 8     .atuo-style{
 9         clear:both;
10     }
11     </style>
12 </head>
13 <body>
14 <img src="html5-2/images/背景.jpg">
15 <p>wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww</p>
16 <p class="atuo-style">eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee</p>
17 
18 </body>
19 </html>  

 

测试结果:
技术分享图片

 

HTML 5--Position HTML Elements

标签:doc   type   pre   alt   body   images   AC   ges   jpg   

原文地址:https://www.cnblogs.com/Catherinezhilin/p/8971392.html

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