Jul 31, 2001 #1 PhoenixDown Programmer Joined Jul 2, 2001 Messages 279 Location CA How do I use CSS to change the background color of tables? thanks http://www.puremadnezz.com/ - PLEASE GO THERE! WE NEED MORE MEMBERS!
How do I use CSS to change the background color of tables? thanks http://www.puremadnezz.com/ - PLEASE GO THERE! WE NEED MORE MEMBERS!
Jul 31, 2001 #2 aperfectcircle Programmer Joined Apr 3, 2001 Messages 290 Location US <table style="background-color: blue;"> Or you can put the following in the <head>ing of the document: <style type="text/css"> table { background-color: blue; } </style> Upvote 0 Downvote
<table style="background-color: blue;"> Or you can put the following in the <head>ing of the document: <style type="text/css"> table { background-color: blue; } </style>
Jul 31, 2001 Thread starter #3 PhoenixDown Programmer Joined Jul 2, 2001 Messages 279 Location CA Thanks! http://www.puremadnezz.com/ - PLEASE GO THERE! WE NEED MORE MEMBERS! Upvote 0 Downvote