Nov 9, 2002 #1 arabia Technical User Nov 4, 2002 8 GB Can anyone tell me what the code is for a background color in CSS? table.multimedia { background-color: ????? } Thanks a lot! Dave.
Can anyone tell me what the code is for a background color in CSS? table.multimedia { background-color: ????? } Thanks a lot! Dave.
Nov 10, 2002 #2 bfjacobs Technical User Sep 6, 2002 26 US table.multimedia {background:white url('none');} Upvote 0 Downvote
Nov 10, 2002 #3 Boomerang Programmer Mar 30, 2001 766 NL You can set the color by name or by value (hex code): table.multimedia {background-color: red} table.multimedia {background-color: #FF0000} For a complete list of colors: http://www.htmlgoodies.com/tutors/colors.htmlIf not enough, do a google-search and you find more color-lists. Because you title says transparancy: table.multimedia {background-color: transparent} This specifies that the parent element background/image will shine through if one exists, else the system default background/image value is used. Hope this helps, Erik <-- My sport: Boomerang throwing !! !! Many Happy Returns !! --> Upvote 0 Downvote
You can set the color by name or by value (hex code): table.multimedia {background-color: red} table.multimedia {background-color: #FF0000} For a complete list of colors: http://www.htmlgoodies.com/tutors/colors.htmlIf not enough, do a google-search and you find more color-lists. Because you title says transparancy: table.multimedia {background-color: transparent} This specifies that the parent element background/image will shine through if one exists, else the system default background/image value is used. Hope this helps, Erik <-- My sport: Boomerang throwing !! !! Many Happy Returns !! -->