I know this question has been asked 100 different ways but i have not yet found an answer that works for me. Essentially i have 2 elements nested inside a wrapper , One of those inner elements is essentially just a setup for an angular directive that pops an element into DOM. It looks like this
<div class="panel-body" id="swfStage" style="width:320px; height:240px;background-color: #355E95;overflow: auto;white-space:nowrap ">
<div class="swfWrapper" style="width: 80%;display: inline-block;">
<div tf-swf class="tf-container" tf-src="swfs/thin.swf" tf-min-version="11.0.0"></div>
</div>
<div class="chatWrapper" style=style="width: 19%;display: inline-block;">It works</div>
</div>
The goal here is that the outer most is a container for the two main inner 's ... I want those divs to be side by side
What i have here is giving me the two inner divs on top of each other.