<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css" media="screen">
.block{
position: relative;
width: 150px;
height: 150px;
background-color: #f00;
}
.block:before{
position: absolute;
content: "";
left: 20%;
top: 20%;
width: inherit;
height: inherit;
z-index: 2;
background-color: #fff; // цвет должен быть такой же как и твой фон
}
</style>
</head>
<body>
<div class="block"></div>
</body>
</html>