程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php實戰第十九天

php實戰第十九天

編輯:關於PHP編程

今天涉獵了 ps,以及做了一個頂部導航條固定,下面給一個效果圖布局.利用得是 position:fixed

 

 \


[html]  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<title>無標題文檔</title> 
<link rel="stylesheet" type="text/css" href="css/in.css" /> 
 
</head> 
 
<body> 
<div id="head"> 
    <div id="header"> 
     
        <div class="nav"> 
            <ul> 
                <li><a >首頁</a></li> 
                <li><a >下載</a></li> 
                <li><a >詞庫</a></li> 
                <li><a >其他</a></li> 
                <li><a >幫助</a></li> 
                <li><a >官方論壇</a></li> 
            </ul> 
         </div> 
          
          
          
    </div> 
</div> 
<div id="main"> 
a<br /> 
b<br /> 
c<br /> 
d<br /> 
e<br /> 
    123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br />   123456789<br /> 
</div> 
</body> 
</html> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>無標題文檔</title>
<link rel="stylesheet" type="text/css" href="css/in.css" />

</head>

<body>
<div id="head">
 <div id="header">
   
        <div class="nav">
         <ul>
             <li><a >首頁</a></li>
                <li><a >下載</a></li>
                <li><a >詞庫</a></li>
    <li><a >其他</a></li>
    <li><a >幫助</a></li>
                <li><a >官方論壇</a></li>
            </ul>
     </div>
        
        
        
    </div>
</div>
<div id="main">
a<br />
b<br />
c<br />
d<br />
e<br />
 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br /> 123456789<br />
</div>
</body>
</html>
css代碼


[css]  @charset "utf-8"; 
/* CSS Document */ 
*{ 
    margin:0px; 
    padding:0px; 
    font-size:14px; 
    } 
body{ 
        background-color:#ECECEC; 
        } 
#head{ 
    position:fixed; 
    top:0px; 
     
    background:#FAFAFA; 
     
    width:100%; 
    height:54px; 
     
    border-bottom: 1px solid #E8E8E8; 
    box-shadow: 0 1px 5px rgba(34, 25, 25, 0.2); 
    z-index:100; 
     

 
#header{ 
    margin:0 auto; 
 
    width:960px; 
    height:54px; 
    } 
.nav{ 
    float: left; 
    height: 54px; 
    width: auto; 
    } 
     
.nav ul ,.nav li{ 
    float: left; 
    list-style: none outside none; 

 
li a{ 
    padding: 0 15px; 
     
    color: #585858; 
    display: block; 
    line-height: 54px; 
     
    border-right: 1px solid #E8E8E8; 

 
 
#main{ 
    position:relative; 
    top:66px; 
     
    margin:0 auto; 
    padding:10px; 
     
    width:960px; 
     
    background: none repeat scroll 0 0 #FFFFFF; 
    border: 1px solid #C7C7C7; 
     
    } 

@charset "utf-8";
/* CSS Document */
*{
 margin:0px;
 padding:0px;
 font-size:14px;
 }
body{
  background-color:#ECECEC;
  }
#head{
 position:fixed;
 top:0px;
 
 background:#FAFAFA;
 
 width:100%;
 height:54px;
 
 border-bottom: 1px solid #E8E8E8;
 box-shadow: 0 1px 5px rgba(34, 25, 25, 0.2);
 z-index:100;
 
}

#header{
 margin:0 auto;

 width:960px;
 height:54px;
 }
.nav{
 float: left;
    height: 54px;
    width: auto;
 }
 
.nav ul ,.nav li{
 float: left;
    list-style: none outside none;
}

li a{
    padding: 0 15px;
   
    color: #585858;
    display: block;
    line-height: 54px;
 
 border-right: 1px solid #E8E8E8;
}


#main{
 position:relative;
 top:66px;
 
 margin:0 auto;
 padding:10px;
 
 width:960px;
 
 background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #C7C7C7;
 
 }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved