rashmi_k28 Posted May 24, 2008 Share Posted May 24, 2008 Hi, How to show the full text when mouse over the $owner. Here the $owner is not seen fully. So on MOuseOver how to display the full text. echo "<td colspan=\"3\"><div align=\"center\" class=\"tduser\">$owner</div></td>"; Link to comment https://forums.phpfreaks.com/topic/107040-onmouseover/ Share on other sites More sharing options...
Xurion Posted May 25, 2008 Share Posted May 25, 2008 You'd need to do this with JavaScript, not CSS. Link to comment https://forums.phpfreaks.com/topic/107040-onmouseover/#findComment-549405 Share on other sites More sharing options...
ToonMariner Posted May 26, 2008 Share Posted May 26, 2008 true for ie6 but modern browsers do handle :hover on any element... td div { display: none; } td:hover div { display: block; } REMEMBER ie6 WILL need a JS solution. Link to comment https://forums.phpfreaks.com/topic/107040-onmouseover/#findComment-549865 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.