Jump to content

[SOLVED] css and php


contra10

Recommended Posts

well i guess this is a css problem im doing a mouseover on my page and i just want a particular section to be mouse mouse over highlighted... instead my whole page has a background color ...i know i closed my tages heres my code

 

<html>
<style type="text/css">
img
{
opacity:0.4;
filter:alpha(opacity=40)
}
</style>
<body>

<img src="C:\wamp\www\event.png" width="80" height="20" alt="klematis"
onmouseover="this.style.opacity=1;this.filters.alpha.opacity=100"
onmouseout="this.style.opacity=0.4;this.filters.alpha.opacity=40" />
</body>
</html>

 

everything after this code should be regular colors

Link to comment
https://forums.phpfreaks.com/topic/140894-solved-css-and-php/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.