嗨,我是一個新手程序員,我正在製作我的第一個網站。我在Mac上工作,每當我直接從finder預覽文件時,即使路徑正確,我的CSS和Images也不會顯示出來。當我在Dreamweaver CS6和Brackets中預覽文件時,視線看起來完全是我想要的,但是當我選擇直接從文件預覽時看不到。這裏是CSS和HTML文件。任何建議將不勝感激。謝謝You.Here是發生了什麼Here從文件預覽時沒有顯示圖像
@charset "UTF-8";
/* CSS Document */
#menuBar{
position: fixed;
width: 100%;
top: -10px;
right: 0px;
z-index: 2;
}
#logo {
position: fixed;
z-index: 3;
right:1100px;
}
#menuButton, #aboutButton, #locationButton, #cateringButton{
position: fixed;
z-index: 4;
color: white;
font-family:Futura;
font-size:10px;
top:30px;
}
#menuButton {
right:610px;
}
#aboutButton {
right:475px;
}
#locationButton{
right:308px;
}
#cateringButton{
right:150px;
}
#facebookButton{
right:60px;
top:40px;
position: fixed;
height:40px;
width: 50px;
z-index:5;
}
<!DOCTYPE HTML>
<html>
<body>
<link href="Roundhouse/CSS/homePage.css" type="text/css" rel="stylesheet" />
<div id="menuBar"><img src="Roundhouse/Images/MenuBar.png" alt="menu Bar" width="100%" height="125px" />
</div>
<div id="logo">
<img src="Roundhouse/Images/Round-House.gif" alt="logo" width="100px" height="100px" /></div>
<div id="menuButton">
<h1>MENU</h1>
</div>
<div id="aboutButton">
<h1>ABOUT</h1>
</div>
<div id="locationButton">
<h1>LOCATION</h1>
</div>
<div id="cateringButton">
<h1>CATERING</h1>
</div>
<div id="facebookButton">
<a href="https://www.facebook.com/RoundhouseBBQ/?rf=205148012847894" target="_blank"> <img src="Roundhouse/Images/facebooklogo.png" border="0" alt="facebook" height="30px" width="30px" >
</a>
</div>
</body>
</html>
你可以截圖的結果是什麼? – mmativ
我將它添加到說明 – KaylaKett13
檢查開發人員工具,並檢查您的路徑是否正確。 – mmativ