This may be old ones for many people .. but for me it is my new techs :
#1 - HTML : Body Margains :
I was using front page 2003 for my HTML pages .. but I had a problem that I can not make the background image of my tables expand from the most right to ther most left without spaces between the page side border and the table border.
After a long search I found this solution :
Code:
<body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">
Tables here will be expanding from the most left to the most right !!
</body>
#2 - Graphics : Gradients :
Using the simple color gradients I found that I can join different programs works .. Like making a flash movie with a background gradient and put it in a cell of a table and make the cell background image the same gradirnt as an very small image in the width (ex : 2 pixels) .. then make the image repeat in x-axiss..
Code:
<td style="background-image: url('back.png'); background-repeat: repeat-x; background-position: center" >
here you can put a flash movie or an image with the same gradient as background!!
</td>