I have a page that contains both Flex and HTML at the same time. How do I do this with a lateral resolution?

On one of my pages, I am using a Flex 4 app in the column on the left and then regular HTML in the column on the right. Is there anyway I can make it so that the ratio between the two columns is the same regardless of the resolution?

Thanks for reading.

+2


a source to share


2 answers


If I understand you correctly, you should indicate your percentage <object>

. This way you will be able to specify the <object>

width at 50% and your right column at 50%.



Hope this helped.

0


a source


The old way: combine your page with <table>

with two elements <td>

, one for Flex and one for HTML. New way: concatenate each segment using <div>

with id, and in your CSS, place the div left / right accordingly.



Anyway setting <td width="50%">

or providing a CSS CSS property width=50%;

should work. But as Dave says, it looks like you've tried at least one of these methods without the expected result, so a small clip of your code will help the community help you.

0


a source







All Articles