에서 작동하지 않습니다, 그 첫 번째 페이지로드, 그것은 잘 작동하지 않습니다 나타났습니다. div가 페이지의 맨 위로 이동합니다. 새로 고침 할 때 모든 것이 제대로 작동하고 div가 세로로 가운데에 배치됩니다. 이 문제를 해결하려면 어떻게해야합니까? DIV의 수직 중심 내용에수직 정렬 그러나</p> <pre><code>.element { position: relative; top: 50%; transform: translateY(-50%); } </code></pre> <p>사용하여 사업부를 중심 내가 수직으로 시도하고 첫 페이지로드
0
A
답변
1
사용할 수있는 내가 50%
으로 absolutely
위치 요소 경향이 후 사용 https://css-tricks.com/snippets/css/a-guide-to-flexbox/#article-header-id-7
display: flex;
align-items: center;
0
플렉스 margin-top:-<half .element height>
:
예 :
height:100px;
position: absolute;
top:50%;
margin-top:-50px;
'position : relative;'를'position : absolute;'로 변경합니다. – Ellisan