<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<link rel="stylesheet" href="mybrand3.css">
<div class="brandtxt">
<a href="https://ruslan.website">
RUSLAN WEBSITE
</a>
</div>
</body>
</html>
.brandtxt {
margin: auto;
background: #090d00;
text-align: center;
text-transform: uppercase;
width: 100%;
border: 4px double rgba(255, 255, 255, .25);
}
.brandtxt a {
text-decoration: none;
font: 700 1.5em "Oswald", sans-serif;
text-shadow: 0 0 80px rgba(255, 255, 255, .5);
background: url(mybrandback.png) repeat-y;
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-animation: aitf 80s linear infinite;
-webkit-transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
}
@-webkit-keyframes aitf {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}
Мне не нужны отступы вообще. Ширина 100% это же от body? тогда если body начинается с отступом слева почему тогда мой блок с шириной 100% правильно начинается с отступом слева но заходит за правую часть body?