Questions tagged «absolute»


8
如何使用CSS将div水平居中?
我有一个div并希望它水平居中-尽管我给它margin:0 auto;它没有居中... .container { position: absolute; top: 15px; z-index: 2; width:40%; max-width: 960px; min-width: 600px; height: 60px; overflow: hidden; background: #fff; margin:0 auto; }
176 css  html  center  absolute 

21
如何检索给定相对路径
给定相对路径时,是否有命令检索绝对路径? 例如,我希望$ line在dir中包含每个文件的绝对路径。 ./etc/ find ./ -type f | while read line; do echo $line done
159 bash  shell  path  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> 结果: 期望: 请提出我该如何实现。 Jsfiddle

5
位置:绝对身高和父母身高?
我有一些容器,他们的孩子只是绝对的/相对的。如何设置容器的高度,以便他们的孩子进入其中? 这是代码: 的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 here --> <section id="bar"> <header>bar</header> <article> <div class="one"></div><div></div> <div class="two"></div> </article> </section> 的CSS article { position: relative; } .one { position: absolute; top: 10px; …
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', },
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.