ID:2125444
 
So I'm using the following HTML code to send to the player:
<div style='overflow:hidden'>
<div style='float:left'>
Test one<br>
Stuff<br>
More stuff<br>
</div>
<div style='float:right'>
Test two<br>
Stuff<br>
More stuff<br>
</div>
</div>
asdfasdfasdf

And in jsfiddle it show this as:
https://jsfiddle.net/msp1vfyz/1/

But in byond it show it as:
https://i.gyazo.com/8d00b99aa0518d36bd879d6fe261a3cc.png

Is it possible I'm missing some sort of stylesheet/byond option?
I want it to look like it does in jsfiddle (the last text being below the divs on the page). Is there an alternate way to do this in byond?
It's possible you're using some sort of HTML/CSS feature that needs an internet explorer version above IE7 (which BYOND uses).

The following HTML tag at the top of your <head> will tell IE to use the highest IE version on the player's system.
<meta http-equiv="X-UA-Compatible" content="IE=edge" />


The highest IE version you can rely on your players to have is IE8, anything higher than that and Windows XP users will have issues (IE8 is the highest IE version that works on XP)