Flare 11, HTML5 output.
Flare mysteriously changes image (IMG tag) size from percentage to "style="width: 1;height: 1;" after the percentage value >= 60% or so.
STEPS:
- I create a two column table with both table columns set to 50% width. So far, so good. (I am, incidentally, applying a named table style that works well in all other regards.)
- In the left table column, I insert an image and apply a class, "sideBySide" that specifies "width: N%;" where N is an integer value. My expectation is that, ideally, I can specify "width: 90%;" and "height: auto;" and have the image fit into 90-percent of the containing table column's width. I say "ideally" because as we will see, something is about to get broken.
- IF I specify N = 50% or less, the image is, as expected, not greater than 50-percent of the table column. That is of course too small: it is indeed only 50-percent of the table column. BUT it does show me that values of N less than 50% are controlling the image's width as a percentage of the containing table column.
- IF N = 60% or greater, (a) then in the output Flare displays a gray box, and (b) the generated page's XHTML includes style="width: 1;height: 1;". This forces the image to revert to 1 pixel X 1 pixel which is of course unusable. This is happening even though a value of 60-percent isn't close to filling the table column's width.
- Created a generic (no class name) 1-row X 2-column table, set up the table width = 100% and columns = 50%.
- Inserted a generic IMG (no class name applied), then in the XHTML itself inserted "style="height: auto; width: 60%;".
What's going on? Why is this breaking in this way?
Cheers & thanks for your help,
Riley