0

スタートボタンをindex.htmlクリックするとスタートボタンのあるページが消え、新しいページが開くまで他の背景は同じままです。クリックした後、次のページに移動するまでボタンを表示する方法。

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Untitled Document</title>
        <link type="text/css" href="splashcss.css" rel="stylesheet" />
    </head>
     <body>
         <div id="container">
         <div id="image"><a href="overview.html">
             <img src="image/startbutton.png" onmouseover="this.src='image/Startbuttonmouse.png'" onmouseout="this.src='image/startbutton.png'"> 
         </div> 
     </body>
 </html>
4

1 に答える 1

0

you are not closing the elements properly... add </a></div> after <img /> tag.

于 2012-04-24T09:47:06.170 に答える