margin-top не работает
margin-top не работает :(
.text {
font-family: Verdana, Helvetica, Arial, sans-serif;
}
#maintext {
text-decoration: none;
margin-top: 200px;
}
<!DOCTYPE HTML>
<html>
<head>
<metacharset="UTF-8"/>
<link rel="stylesheet" type="text/css" href="style.css.css" />
</head>
<body>
<center>
<a title="Получить п%*(ы" id="maintext" class="text" href="kek.html.html">ыыы</a>
<center/>
</body>
</html>
Ответы (2 шт):
Автор решения: UModeL
→ Ссылка
Просто добавьте "блочности" ссылке:
.text {
font-family: Verdana, Helvetica, Arial, sans-serif;
}
#maintext {
display: inline-block;
text-decoration: none;
margin-top: 200px;
}
<!DOCTYPE HTML>
<html>
<head>
<metacharset="UTF-8" />
<link rel="stylesheet" type="text/css" href="style.css.css" />
</head>
<body>
<center>
<a title="Получить п%*(ы" id="maintext" class="text" href="kek.html.html">ыыы</a>
<center/>
</body>
</html>