Making wp-block-embed-youtube responsive

Halfway through writing my own CSS to make Wordpress’ Youtube embeds do responsive resizing, I found out that Wordpress can do it for you. You just need to put this line into functions.php: add_theme_support( 'responsive-embeds' ); Fixed. Now when you paste a Youtube URL into the block editor (Gutenberg), Wordpress will make it look right with no further messing around needed. (Though I do wonder: why isn’t this just done by default? The block editor brings in its own CSS to do columns and such – responsive embeds should be in there too.)

Fullscreen Background Video HTML5 And CSS cross-browser

Full-screen Background Video is a way to present your website playing a video in the background without disturbing its content. It makes your website very modern and different. So, in this tutorial we will show you how to add fullscreen background video using only  HTML5 and CSS and make it compatible for all browsers. Before achieving this, there some factors you should consider: The video will likely be set to autoplay, but it should be muted by default; ideally, it should not include sound at all. (You can easily create an unmute button for the video with JavaScript).The video should display a placeholder image, falling...