我想讓圖像在懸停時略微增長。我知道這很簡單,但我已經尋找了一個比其他例子好一個小時,似乎無法弄清楚我缺少的東西。我很感激幫助。這些圖像保存到我的電腦。css懸停未執行
範圍
<link type="text/css" rel="stylesheet" href="stylesheet.css"/>
<embed src="73797^alarmclock.mp3"; autostart="true"; loop="true"; hidden="true";/>
<body>
<img src ="alarm clock2.jpg"/>
<p> Pulling the sheets into my body, I begin to sink back into the bed...
uggh... my alarm clock... time to get up..
<img style = "position:absolute; top:300px; right: 0px; z-index:1"
src="computer.jpg"/>
<IMG ID="grow" STYLE= "position:absolute; TOP:1157px; LEFT:599px;
WIDTH:47px; z-index:2; HEIGHT:47px" SRC="icon2.gif"/>
</body>
</html>
這裏是stylesheet.css中
#grow:hover {
width: 100px;
height: 150px;
}
不要使用內聯樣式。你的問題是內聯樣式比CSS更優先。把它們放在'stylesheet.css'中,它就可以工作。 – Itay
爲什麼你使用內聯樣式和混亂的CSS。 – Sir
和不在引號中的所有內容都應該是小寫。你用微軟的話創造了這個嗎? – PlantTheIdea