On Desktop on I have something like this:
Code: Select all
<style>
.leftbox
{
float: left; width: 400px;
}
.rightbox
{
float: right; width: 400px;
}
</style>
<div class='leftbox'>
video here
</div>
<div class='rightbox'>
content here
</div>
So is there a way to give a DIV priority, or do changing the ordering of the DIVs, but still make them appear as required?