I am trying to have a responsive full screen image background in my Vue project and I can't get the image to show up, and am not sure what is wrong, the majority of the examples I have seen use the css in my code example
<template>
<div id="myDiv">
</div>
</template>
<script>
</script>
<style scoped>
#myDiv {
/*background: url('../../Images/Toronto.jpg');*/
background: url('https://images.pexels.com/photos/374870/pexels-photo-374870.jpeg?auto=compress&cs=tinysrgb&dpr=3&h=750&w=1260');
height: 100%;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}