Hey there! I'm attempting to incorporate a flash game into an HTML web page.
.gameplace{
padding: 10px;
background-color: #ffffff;
border: dashed #c4b470 1px;
height: 100%;
min-height: 100%;
}
.gameplace object{
width: 853px;
height: 100%;
}
<div class='main-filler'>
<div class='main-info'>
<div class='gameplace'>
<object data='test.swf'></object>
</div>
</div>
</div>
I am struggling to dynamically adjust the height of the swf file within the container. The swf file displays correctly when I manually set a specific height, but it doesn't show up when I try to make the height dynamic based on the actual content. How can I achieve this? Apologies for any language barriers :)