Reputation: 2909
I am having problem with html/css.
position: relative;
) , in my case it is div.jtk-demo-canvas
position: absolute;
) inside, in my case these are div.jtk-window
position: absolute;
) as it is requirement for js pluginRequirement: Floating divs should have min-width of 200 and max-width of 400. I dont want to apply width to it as it should vary between 200-400 to fit its content.
But as You can see in my case last div from right is same as 2nd one but its width is lesser.
How can I Fix this ?
jsfiddle: https://jsfiddle.net/bababalcksheep/wm94sf2b/ Since I have large html code, therefore I am posting fiddle link.
Upvotes: 1
Views: 176
Reputation: 4261
Try display: inline-table
and position: relative
to div with id 117a13213-102 (Checked in Chrome and Firefox)
CODE
<div style="left: 800px; top: 105px; display: inline-table; position: relative;" id="117a13213-102" class="flowBox jtk-window">
Upvotes: 1
Reputation: 856
because you gave him left:800px;
and your body is width: 960px;
for that your 3rd div only have 160px place
Upvotes: 2