«absolute» 태그된 질문




9
절대적으로 위치한 부모 div 안에 div를 세로로 가운데에 배치하는 방법
분홍색 컨테이너 중간에 파란색 컨테이너를 얻으려고하지만 vertical-align: middle;그 경우에는 효과가없는 것 같습니다 . <div style="display: block; position: absolute; left: 50px; top: 50px;"> <div style="text-align: left; position: absolute;height: 56px;vertical-align: middle;background-color: pink;"> <div style="background-color: lightblue;">test</div> </div> </div> 결과: 기대: 어떻게 달성 할 수 있는지 제안하십시오. JS 피들

6
위치 : 절대 및 부모 높이?
나는 몇 개의 컨테이너를 가지고 있으며 그들의 아이들은 절대적 / 상대적으로 위치합니다. 아이들이 컨테이너 안에 들어갈 수 있도록 컨테이너 높이를 설정하는 방법은 무엇입니까? 코드는 다음과 같습니다. HTML <section id="foo"> <header>Foo</header> <article> <div class="one"></div> <div class="two"></div> </article> </section> <div style="clear:both">Clear won't do.</div> <!-- I want to have a gap between sections …
100 html  css  position  height  absolute 

7
React Native 절대 위치 수평 중심
position:absolute사용 중에는 justifyContent또는 을 사용하여 요소를 중앙에 배치 할 수없는 것 같습니다 alignItems. 사용할 해결 방법이 marginLeft있지만 장치의 높이와 너비를 감지하는 차원을 사용하더라도 모든 장치에 대해 동일하게 표시되지는 않습니다. bottom: { position: 'absolute', justifyContent: 'center', alignItems: 'center', top: height*0.93, marginLeft: width*0.18, }, bottomNav: { flexDirection: 'row', },
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.