blob: 65387b5998e28416de545a1d4788bb581593bfee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<html>
<style>
#target::before {
content: '';
background-color: rgb(255, 255, 255);
height: 100px;
width: 100px;
position: absolute;
}
</style>
<div id="target"></div>
</html>
|