|
||||||||||
|
|||||||
| GoogleCommunity Sponsor |
Use coupon "forum" for 50% Off! |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Googler
![]() Join Date: May 2004
Location: Germany
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
CSS Tips and Tricks
CSS Resources, Tutorials, Tips and Tricks (please report broken links)
http://learningforlife.fsu.edu/webma.../css/index.cfm By carefully planning your layout you can create an alternate stylesheet that will display correctly in older browsers and still be able to do an advanced CSS layout for the rest. http://www.edgeofmyseat.com/showarticle.do?AID=5 The biggest challenges that web developers face when implementing CSS is backwards compatibility and browser support. http://www.mako4css.com/Issues.htm http://info.vilesilencer.com/main.ph...=css_tute1.php ------- Tools and Utilities |
|
|
|
|
Sponsored Links
|
|
|
|
#2 (permalink) |
|
Googler
![]() Join Date: May 2004
Location: Germany
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Table Magic
Here is a way to make entire table cells change on mouseover and mouseout. First, let's create some global definitions for our tables, so here is a style sheet that defines the text color and background color for each cell. <style> td { font-family: verdana,arial,sans-serif; font-size:12pt; font-weight:bold; background-color: C9C9C9; } </style> Now, within the table itself, we can define the mouse activity like this: <TABLE bgcolor="#cc0000" cellpadding="1" cellspacing="1" border="0"> <TR> <TD width="100" onmouseover="this.style.backgroundColor='#FFFF00'; " onmouseout="this.style.backgroundColor='#C9C9C9'"> <a href="http://www.bravenet.com]><FONT COLOR="#000000">Bravenet.com</FONT></a> </TD> </TR> <TR> <TD width="100" onmouseover="this.style.backgroundColor='#FFFF00'; " onmouseout="this.style.backgroundColor='#C9C9C9'"> <a href="http://www.freeguestbooks.com]><FONT COLOR="#000000">FreeGuestbooks.com</FONT></a> </TD> </TR> </TABLE> Note that we have coded the onmouseout value to the original background color (C9C9C9) that we scripted in the stylesheet. This of course could be different, but what this does is set a bgcolor value, change it on mouse hover, then return to our original color. Note also we set a background color for the table (CC0000), which, because we are defining the cell color, acts as a dark red border around our cell. As always, play around with these parameters to get the effect which best suits your site. You can also combine this with the Rollover styles shown in the first section of this newsletter for some really wacky and fun color changes! Found at: http://www.bravenet.com |
|
|
|
|
|
#4 (permalink) |
|
Noogle
![]() Join Date: Jul 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
The University of Arizona - Cascading Style Sheets http://uaweb.arizona.edu/resources/t...ss/index.shtml
Broken Link! |
|
|
|
|
|
#5 (permalink) | |
|
Googler
![]() Join Date: May 2004
Location: Germany
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
Quote:
|
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| TIPS AND TRICKS | luckymurari | Site Reviews & Suggestions Forum | 3 | 11-08-2006 02:09 AM |
| Orkut tips and tricks | luckymurari | Social Networking | 3 | 11-05-2006 10:06 AM |
| Card Tricks | dauodwa | Chit Chat | 10 | 06-05-2006 01:12 AM |
| Haduri - Pen Tricks | intelliot | YouTube & Google Video Picks | 3 | 06-05-2006 12:05 AM |
| Five Google Tricks | intelliot | All About Google | 37 | 02-02-2005 11:43 AM |