|
Posted by Edwin van der Vaart on 04/18/07 21:58
alishadevochka@gmail.com wrote:
> On Apr 18, 2:34 pm, "J.O. Aho" <u...@example.net> wrote:
>> alishadevoc...@gmail.com wrote:
>> > I have created a table using Mozilla composer. Every time I write in
>> > one of the cell it start to expand. Is there a way to prevent this
>> > behavior. I want to have fix wide and height. I don't want it change
>> > it at all.
>>
>> Set a fixed width on the cells, if you take to edit the cells, you get the option.
>
> Thanks. I've also decided to use css.
>
> [snip css and html code]
Changed the code like this
Between the <head>
<style type="text/css">
table {
border: #3e88ff 1px solid;
background-color: #ffffff;
Width: 75%;
text-align: left;
margin-left: auto;
margin-right: auto;
}
td {
vertical-align: top;
text-align: center;
width: 20%;
border: #3e88ff 1px solid;
}
</style>
In the <body>
<table>
<tr>
<td>
<br>
</td>
<td>
<br>
</td>
<td>
<br>
</td>
<td>
<br>
</td>
<td>
<br>
</td>
</tr>
</table>
--
Edwin van der Vaart
http://www.semi-conductor.nl/ Links to Semiconductors sites
http://www.evandervaart.nl/ Edwin's persoonlijke web site
Explicitly no permission given to Forum4Designers, onlinemarketingtoday,
24help.info, issociate.de and software-help1.org to duplicate this post.
[Back to original message]
|