Hi!
Sorry for my bad english!
I made an editor. When user passes mouse over the picture, the picture changes color (
Here's code:
<style>
.button:hover{
filter:alpha(opacity=20);
opacity=0.2;
}
.field{
background:#aabbcc;
border:1px solid black;
}
</style>
<fieldset class=field>
<img src=blablabla.bmp class=button>
</fieldset>
)
I want to make that, when user passe mouse over this picture, around the picture creates a border, (1px solid blue), and the background color is 'lightblue' with 'opacity=0.6'. How to do that?
(PS: I want to make like editor on this site (daniweb)!)