Struggling with keeping a .js validation script in a fixed position on a webpage.
Here is the CSS code:
div.fixed {
position: fixed;
bottom: 0;
left: 0;
}
HTML
<div class="fixed">
<script src="http://my.gblearn.com/js/javascript.js"></script>
</div>
Any content added inside the div tag successfully rises above and stays fixed at the bottom left, but the javascript file remains unaffected by the .css rule.
Looking for suggestions on how to address this issue. Appreciate any assistance provided.