I am embedding videos from Google drive on a site and the videos appear fine in Chrome & Firefox. In IE 11 and Edge it's a no go. I am assuming this is a privacy setting in the browser, although I'm not sure which. Also, if it is a privacy setting this obviously will not work as I can't go into every user's settings for them! Solutions or work-arounds?
here is the iframe code I am using...
<style>
.embed-container {
position: relative;
padding-bottom: 56.25%;
height: 0;
overflow: hidden;
max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border:none;
}
</style>
<div class="embed-container">
<iframe src="https://drive.google.com/file/d/0B8az0_GAjTu8WWZ4Q2RxX1RoZWc/preview"></iframe>
</div>