2015-08-08 95 views
2

我的頁腳不會伸展100%。其他一切工作正常。對不起,如果這是非常容易的,但我剛剛開始編碼,這是我自己建立的第一個網站。如果有人能夠幫助我,這將是偉大的。頁腳不會伸展100%

HTML:

 <!DOCTYPE html> 
<html> 
    <head> 
    <title>Nate Thomas | Web Developer</title> 
    <meta name="viewport" content="width=device-width, initial-scale=1"> 
    <link href='http://fonts.googleapis.com/css?family=Lobster|Bree+Serif' rel='stylesheet' type='text/css'> 
    <link rel="stylesheet" type="text/css" href="styles.css"> 
    </head> 
    <body> 
    <header> 
     <h1 class="main-header">Nate Thomas</h1> 
     <h2 class="secondary-header">Web Developer</h2> 
<!------------------------ 
     <ul> 
     <li><a href="http://www.twitter.com/itsnatetho"><img src="img/social_media_icons_triangle_set_64x64_0002_twitter.png"></a></li> 
     <li><a href="#"><img src="img/social_media_icons_triangle_set_64x64_0019_behance.png"></a></li> 
     <li><a href="#"><img src="img/social_media_icons_triangle_set_64x64_0010_linkedin.png"></a></li> 
     </ul> 
-------------------------> 
    </header> 
<!---Start Main Body---> 
    <div id="wrapper"> 

     <div class="profile-pic"> 
     <img src="img/me-fireworks.jpeg"> 
     </div> 

     <div class="about"> 
     <h2>About Me</h2> 
     <p>My name is Nate Thomas. I am a front end web developer living on the Eastern Shore of Maryland. I currently work full-time doing a job I hate but recently found my passion on the web. I work everyday perfecting my skills so one day this can be my full-time job.</p> 
     </div> 

     <div class="work"> 
     <h2>My Work</h2> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 

    </div> 
<!---End of Main Body--->  
    <footer id="footer"> 
     <h2>Get in Touch!</h2> 
     <ul class="contact"> 
     <li><a href="http://www.twitter.com/itsnatetho"><img src="img/tweet.png"></a></li> 
     <li><a href="#"><img src="img/instagram.png"></a></li> 
     <li><a href="#"><img src="img/behance.png"></a></li> 
     <li><a href="#"><img src="img/skype.png"></a></li> 
     </ul> 
     For all business inquiries please email at <a href="mailto:[email protected]">[email protected]</a> 

    </footer> 
    </body> 
</html> 





* { 
box-sizing: border-box; 
} 

body { 
    width: 100%; 
    background-image: url(img/mochaGrunge.png); 
    font-size: 1em; 
    margin: 0; 
} 

header { 
    width: 100%; 
    padding-top: 5px; 
    margin: 10px 0; 
    height: 130px; 
    background-color: dodgerblue; 
    text-align: center; 

} 

.main-header { 
    text-align: center; 
    font-size: 3em; 
    margin: 10px; 
    font-family: 'Lobster', 'cursive'; 
} 

.secondary-header { 
    text-align: center; 
    margin: -10px 0; 
    font-size: 1.4em 
} 

#wrapper { 
    width: 75%; 
    margin: auto; 
} 

.profile-pic img { 
    width: 75%; 
    border-color: black solid 4px; 
    border-radius: 20px; 
} 

.profile-pic { 
    text-align: center; 
    margin: 10px; 

} 

h2 { 
    text-align: center; 
    font-size: 2.5em; 
    font-family: 'Bree Serif', 'sans-serif'; 
    padding: 5px; 
    margin-bottom: 15px; 
    background-color: dodgerblue; 
    letter-spacing: 1.5px; 
} 

p { 
    padding: 10px 0; 
    font-family: 'Bree Serif', 'sans-serif'; 
    margin-bottom: -15px; 
} 

.work img { 
    width: 100%; 
    margin-bottom: 5px 
} 

#footer { 
    width: 100%; 

} 

回答

2

閉上你的包裝,它仍然打開您啓動前軀。

 <div class="work"> 
     <h2>My Work</h2> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
     <img src="https://placeholdit.imgix.net/~text?txtsize=33&txt=350%C3%97250&w=350&h=250"> 
    </div> 
</div> //add this 
+0

謝謝,我實際上只是在你發佈之前就已經意識到了。愚蠢的錯誤。 – Nate

+0

哈哈,沒關係! – Olli

0

我發現了錯誤!我忘了關閉#wrapper div!