I have a problem with a password-username login form that I made with JavaScript. It's not the form itself, but it has such a big <hea开发者_运维百科d>
that it takes up space.
Is there something I can add to it to keep it without it taking up space?
Sounds to me like you're using embedded JS inside your HTML. I could be wrong from the ambiguity in the question.
Try:
<script type="text/javascript" src="script.js"></script>
And put all your JS inside of that file
精彩评论