Last active
January 12, 2017 00:46
-
-
Save drwpow/317ff0f5478484dd1476a1cc6ddb7fc9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="my-container"> | |
<img /> | |
</div> | |
<script> | |
var sizeContainer = function() { | |
// console.log(subtractPixels); | |
var subtractPixels = 24; | |
// console.log(subtractPixels); | |
document.querySelector('#my-container') | |
.style.height = (window.innerHeight - subtractPixels) + 'px'; | |
// console.log(document.querySelector('#my-container')); | |
// console.log((window.innerHeight - subtractPixels) + 'px'); | |
}; | |
sizeContainer(); | |
window.addEventListener('resize', sizeContainer); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment