filter: blur

by Roberto Apasajja

HTML

<div class="box">
  sasasadsaas
</div>

CSS

body {
  background: url(https://www.bing.com/th?id=OHR.MontereyPup_ROW4182358425_1920x1080.jpg);
  background-size: cover;
  padding: 0;
  margin: 0;
}

.box {
  background: url(https://www.bing.com/th?id=OHR.MontereyPup_ROW4182358425_1920x1080.jpg) no-repeat;
  background-size: cover;
  margin: auto;
  margin-top: 100px;
  width: 300px;
  height: 300px;
  filter: blur(10px);
}