|
|
#1 |
|
Member
![]() Posts: 13
Karma: 10
Join Date: Sep 2010
Device: Kindle 3nd
|
fixed table size
Hi,
I am trying to create a table with a fixed size to use it in a mobi file. e.g.: Code:
<table border="0">
<tr>
<td width="190">FIRST</td>
<td width="270">SECOND</td>
</tr>
<tr>
<td>FIRST</td>
<td>SECOND</td>
</tr>
</table>
regards JiYu |
|
|
|
|
|
#2 |
|
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,899
Karma: 207182180
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
Tables are barely supported in mobi's, and very limited in their functionality. For displaying small tables (simply displaying a table of data) it will work, but using them for html layout purposes will almost always result in disappointment.
http://www.mobipocket.com/dev/articl...ile=tables.htm |
|
|
|
|
|
#3 | |
|
Member
![]() Posts: 13
Karma: 10
Join Date: Sep 2010
Device: Kindle 3nd
|
Quote:
I am just wondering because this basic table should be supported according to this -> http://www.mobipocket.com/dev/articl...TagRef_OEB.htm |
|
|
|
|
|
|
#4 |
|
Grand Sorcerer
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Posts: 28,899
Karma: 207182180
Join Date: Jan 2010
Device: Nexus 7, Kindle Fire HD
|
See if you have any better results with:
Code:
<table width="460" border="0">
<tr>
<td width="190">FIRST</td>
<td>SECOND</td>
</tr>
<tr>
<td>FIRST</td>
<td>SECOND</td>
</tr>
</table>
|
|
|
|
|
|
#5 | |
|
Member
![]() Posts: 13
Karma: 10
Join Date: Sep 2010
Device: Kindle 3nd
|
Quote:
|
|
|
|
|
![]() |
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| You fixed it! | beppe | Feedback | 2 | 07-14-2010 12:14 AM |
| Anyone know how to convert a pdf table into a table in Word or HTML? | BasilC | Workshop | 7 | 06-25-2010 02:02 AM |
| Sideway Table in ePub (Rotate table/text) | Lapiz | ePub | 3 | 01-29-2010 02:11 PM |
| Forget coffee table books-- how about a kitchen table book? | ardeegee | Lounge | 10 | 12-02-2009 01:00 PM |
| font size in table | bobcdy | Kindle Formats | 7 | 07-23-2009 09:08 AM |