I have a page that contains both Flex and HTML at the same time. How do I do this with a lateral resolution?
2 answers
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 to share