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

css-图片铺满屏幕

时间:2015-09-23 13:22:28      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

方法一:

 1 <style>
 2 *{font-family:微软雅黑;}
 3 img{width:100%;height:100%;position:absolute;top:0;left:0;z-index:-1;}
 4 .word{padding-left:15px;padding-right:15px;margin:20px auto;color:#ccc;font-size:15px;}
 5 .header{text-align:center;line-height:35px;color:#f60;font-size:24px;}
 6 </style>
 7 
 8 </head>
 9 <body>
10 <img src="bg0.jpg" alt="loginBg">
11 <div class="word">
12     <div class="header">Hello you</div>
13     Your time is limited, so don‘t waste it living someone else‘s life. Don‘t be trapped by dogma - which is living with the results of other people‘s thinking. Don‘t let the noise of other‘s opinions drown out your own inner voice. And most important, have the courage to follow your heart and intuition. They somehow already know what you truly want to become. Everything else is secondary.  <br /> -- Steve Jobs
14 </div>
15 </body>

方法二:

 1 <style>
 2 body{background:url(bg2.jpg) no-repeat center top;height:100%}
 3 .word{padding-left:15px;padding-right:15px;margin:20px auto;color:#ccc;font-size:18px;}
 4 .header{text-align:center;line-height:35px;color:#f60;font-size:24px;}
 5 </style>
 6 
 7 </head>
 8 <body>
 9 <div class="wrap">
10     <div class="header">Hello you</div>
11     Your time is limited, so don‘t waste it living someone else‘s life. Don‘t be trapped by dogma - which is living with the results of other people‘s thinking. Don‘t let the noise of other‘s opinions drown out your own inner voice. And most important, have the courage to follow your heart and intuition. They somehow already know what you truly want to become. Everything else is secondary.  -- Steve Jobs
12 </div>
13 </body>

 

css-图片铺满屏幕

标签:

原文地址:http://www.cnblogs.com/k11590823/p/4831793.html

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