首页 > Web开发 > 详细

HTML 5--Position HTML Elements

时间:2018-04-29 17:28:10      阅读:192      评论:0      收藏:0      [点我收藏+]

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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!