Nov 9, 2002 #1 arabia Technical User Joined Nov 4, 2002 Messages 8 Location 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 Joined Sep 6, 2002 Messages 26 Location US table.multimedia {background:white url('none');} Upvote 0 Downvote
Nov 10, 2002 #3 Boomerang Programmer Joined Mar 30, 2001 Messages 766 Location 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 !! -->