<html> <head> <style> .style1 { border:3px solid blue; } .style2 { border:"none";} </style> </head> <body> <div id="myL" style="width:500; height:500; background-color:beige" onmouseover="this.className='style1'" onmouseout="this.className='style2'"> This is a div element. </div> </body> </html>