Advent 2021 - Day 6 - Perfect Background Image
Happy 6th of December!
Many of you asked how they can set the perfect background image for their profile - full width, full height, not repeated (even on larger screens) and zoomed in if necessary. So today I want to share you a tiny snipped of code to archive exactly this:
<style>
body{
background: url('https://source.unsplash.com/FN-cedy6NHA/1000') no-repeat center center fixed;
background-size: cover;
}
</style>
(The image used in this example is by Francesca Hotchin on Unsplash)
I hope this helps some of you!
Have a wonderful festive day everyone!