方法一:
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>
时间: 2024-10-11 01:51:50