Фон в css надо поставить изображение за место белого фона
Надо поставить заместо белого фона какое нибудь изображение
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.brat{
text-shadow:
2px 2px 0 black,
1px -1px 0 black,
-1px 1px 0 black,
-1px -1px 0 black;
}
#papa{
line-height: 250px;
}
.mama{
font-size:500%;
color:red;
}
div{
border: 20px solid blue;
height: 250px;
width: 250px;
background-color:white
}
</style>
<script>
addEventListener('DOMContentLoaded',
function() {
elem = document.querySelector('div'),
size = [innerWidth - 100, innerHeight - 100],
random = a => a * Math.random()|0,
timer = () =>{
const [left, top] = size.map(random);
elem.style.transform = `translate(${left}px, ${top}px`;
};
elem.addEventListener('click',timer)
});
</script>
</head>
<body>
<div id ="papa">
<center>
<span class="mama">
<span class="brat">
KYBIK
</span>
</span>
</center>
</div>
</body>
</html>
|