html code to make image size are same with table size. bacause i want to create a newsletter.. and how to set table size in html
A:
add this to your stylesheet
td img{
display: block;
width: 100%;
height: 100%
}
lock
2010-10-21 08:17:48
although i dont really recommend using tables for layouts, you should really do that with divs
lock
2010-10-21 08:18:38
i'm not using stylesheet..just one html page for nesletter
Beginner Pogrammer
2010-10-21 08:21:38
@lock Unfortunately, you usually have to use tables in HTML newsletters for any sort of cross compatibility.
alex
2010-10-21 08:31:06
A:
You set table size using width and height attributes.
<table style="width:200px;height:100px;">
Obviously, you can do that with a CSS class as well.
Francisc
2010-10-21 08:20:31