Я сделал стрелку на которой текст, в отдельном документе работает, на сайте нет, что ей мешает?
Вот стрелка в отдельном файле:
<!DOCTYPE html>
<html lang="ru">
<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>
<style>.arrow {
margin: 50px;
padding: 5px 0px 5px 20px;
position: relative;
width: 245px;
/* border-radius: 0 40% 40% 0; */
background: teal;
color: white;
top: 50%;
left: 50%;
/* outline: 1px solid black; */
/* height: 20%; */
}
.triangle {
content: '';
position: absolute;
width: 0;
height: 0;
top: 0;
right: 0;
transform: translate(93%,-13%);
background: transparent;
border: 160px solid transparent;
border-left: 207px solid teal;
z-index: -1;
}
</style>
</head>
<body style="height: 100vh;">
<div class="arrow">
<h1>Большинство квантовых компьютеров выглядят примерно так</h1>
<div class="triangle"></div>
</div>
</body>
</html>
Вот ссылка на сайт:
j45195993.myjino.ru/#03