基本的に、ページの上部に三角形の行が必要です。下向きにする必要があります。私はCSSで三角形を作成しましたが、何らかの理由で、それらが必要なように一列に並んでいるのではなく、互いに上下に移動したいのです。
CSSの経験が豊富な人は見てもらえますか? ありがとう。
HTML:
<div class="triangle-container">
<div class="arrow-down">
</div>
<div class="arrow-down">
</div>
</div>
CSS:
/* BODY */
body
{
background-color: #eee;
height: 100%;
width: 100%;
z-index: 1;
padding: none;
border: none;
margin: none;
}
/* Triangles! */
.triangle-container
{
display: inline;
height: auto;
width: 100%;
position: absolute;
top: 0;
left: 0;
text-align: center;
}
.arrow-down
{
margin-left:auto;
margin-right:auto;
width:0;
height:0;
border-left:50px solid transparent;
border-right:50px solid transparent;
border-top:50px solid #FF6A00;
}