|
| www.kdwebpagedesign.com |
|
BASIC HTML ::
Welcome
Introduction to HTML What is an URL? Browser Safe Fonts Photo Size and Compression Formatting Your Text Paragraphs, Linebreaks, Rules The Marquee Tag Adding Images Adding Text and Image Links Making Lists Tables: Basics Tables: Backgrounds and Color Tables: Colspan and Rowspan Tables: Practical Samples BASIC CSS ::
Introduction to CSS
Adding Backgrounds and Color The <div> and <span> Tags Formatting Your Text/CSS Making Lists/CSS Image Borders/CSS Hyperlinks/CSS Tables/CSS Fun with CSS USER Tools ::
Custom Auction Listing Creator: 1
Custom Auction Listing Creator: 2 Choosing Your Colors Mix-and-Match Backgrounds JavaScript Tricks ::
Other Information ::
eBay Related Questions
Customizing Your eBay Store Hosting Your Own Photos on eBay Using Irfanview to Crop Photos What Does That Term Mean? Donations ::
Do you find our Tutorials helpful? Are the free Auction Templates helping your sales? Donations of any amount are appreciated to help keep this site up and running!
|
![]() |
Tables: Backgrounds and ColorNow that you understand the basics of building tables, it is time to add some color and backgrounds. You can add color to the table border and the cell borders by adding bordercolor="x". The cell borders will default to the same color as your table border, but you can add a border color to the individual cells to make them different colors. Setting a border color will eliminate the 3-D effect in Internet Explorer.
<table width="300" align="center" border="4" cellspacing="6" cellpadding="6" bordercolor="#7b7e00"> To add color to the table or cells you use the attribute bgcolor="x".
<table width="300" align="center" border="4" cellspacing="6" cellpadding="6" bordercolor="#7b7e00"> You can also use background images in your tables. To add a background image to the table or cells you use the attribute background="x".
<table width="300" align="center" border="4" cellspacing="6" cellpadding="6" bordercolor="#7b7e00" background="img/back_1.gif"> You can also specify how your text is positioned within the cells by adding align="x" using left, center or right. Vertical position of the text is controlled by adding valign="x" using top, middle or bottom.
<table width="300" align="center" border="4" cellspacing="6" cellpadding="6" bordercolor="#7b7e00" background="img/back_1.gif"> To make full page color backgrounds or backgrounds with images for your eBay pages or auctions, you would use a table to enclose your text. Do not use the <body> tag to add background color or images on eBay.
|