Questions tagged «position»

位置是指元素相对于其容器的位置,通常在水平和垂直轴上。


8
如何将一个div覆盖在另一个div上
div在将一个人叠加到另一个人上时,我需要帮助div。 我的代码如下所示: <div class="navi"></div> <div id="infoi"> <img src="info_icon2.png" height="20" width="32"/> </div> 不幸的是,我不能将div#infoi或嵌套img在第一个内部div.navi。 div如图所示,它必须是两个单独的,但是我需要知道如何将放置在div#infoi上方div.navi和最右侧,并以的顶部为中心div.navi。
957 html  css  position  overlay 

23
固定位置,但相对于容器
我正在尝试使用以下方法修复一个问题div,使其始终停留在屏幕顶部: position: fixed; top: 0px; right: 0px; 但是,那 div位于内部居中容器中。当我使用position:fixed它时,它div相对于浏览器窗口进行了修复,例如它靠在浏览器的右侧。相反,它应该相对于容器固定。 我知道 position:absolute可以用来相对于修复元素div,但是当您向下滚动页面时,该元素消失并且不会像那样粘在顶部position:fixed。 是否有破解或解决方法来实现这一目标?


7
具有位置参数的Git别名
基本上我想别名: git files 9fa3 ...执行命令: git diff --name-status 9fa3^ 9fa3 但是git似乎没有将位置参数传递给alias命令。我努力了: [alias] files = "!git diff --name-status $1^ $1" files = "!git diff --name-status {1}^ {1}" ...和其他一些,但没有用。 简并的情况是: $ git echo_reverse_these_params a b c d e e d c b a ...我该如何进行这项工作?


15
使绝对定位的div扩展父div的高度
如您在下面的CSS中所看到的,我想child2将自己定位在之前child1。这是因为我当前正在开发的网站也可以在移动设备上工作,该网站child2应该位于底部,因为它包含了我想要的导航,该导航位于移动设备上的内容下方。-为什么没有2个母版页?这是divs在整个HTML中重新定位的仅有2个,因此,对于这个较小的更改,只有2 个母版页太过分了。 HTML: <div id="parent"> <div class="child1"></div> <div class="child2"></div> </div> CSS: parent { position: relative; width: 100%; } child1 { width: auto; margin-left: 160px; } child2 { width: 145px; position: absolute; top: 0px; bottom: 0px; } child2 具有动态高度,因为不同的子站点可能具有更多或更少的导航项。 我知道绝对定位元素已从流中删除,因此被其他元素忽略。 我尝试overflow:hidden;在父div上进行设置,但这没有帮助,也不起作用clearfix。 我的最后一个选择是使用JavaScript重新定位两者divs,但是现在,我将尝试看看是否存在使用非JavaScript的方法。

4
SVG定位
我正在使用SVG,并且在定位方面遇到一些问题。我有一系列包含在g组标记中的形状。我希望像容器一样使用它,因此可以设置它的x位置,然后该组中的所有元素也将移动。但这似乎是不可能的。 大多数人如何定位您希望一并移动的一组元素? 有相对定位的概念吗?例如相对于其父级
203 svg  position  grouping 

11
无论监视器分辨率如何,如何设置JFrame居中显示?[关闭]
已关闭。这个问题需要更加集中。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅通过编辑此帖子来关注一个问题。 7个月前关闭。 改善这个问题 使用Java时,我发现启动应用程序时很难将主窗口放置在屏幕中央。 有什么办法可以做到吗?它不必垂直居中,水平对齐对我来说是更重要的目标。但是也欢迎垂直对齐。
197 java  swing  jframe  position 

8
设置视图的绝对位置
是否可以在Android中设置视图的绝对位置?(我知道有个AbsoluteLayout,但已弃用...) 例如,如果我有一个240x320px的屏幕,如何添加一个20x20px的屏幕,ImageView使其中心位于位置(100,100)?

9
CSS3框大小:margin-box;为什么不?
我们为什么没有box-sizing: margin-box;?通常,当我们放入box-sizing: border-box;样式表时,我们实际上是指前者。 例: 假设我有2列的页面布局。这两列的宽度均为50%,但它们看起来有点丑陋,因为没有装订线(中间有缝隙)。下面是CSS: .col2 { width: 50%; float: left; } 要应用装订线,您可能会认为我们可以在两列的第一列中设置合适的边距;像这样的东西: .col2:first-child { margin-right: 24px; } 但这将使第二列换行,因为以下内容是正确的: 50% + 50% + 24px > 100% box-sizing: margin-box;可以通过在元素的计算宽度中包括边距来解决此问题。我觉得这很有用,即使没有比有用box-sizing: border-box;。
139 css  layout  position  w3c 

11
RecyclerView-在特定位置获取视图
我有一个与RecyclerView和一起进行的活动ImageView。我正在使用RecyclerView来水平显示图像列表。当我点击在图像上RecyclerView的ImageView在活动中应显示图像的大局观。到目前为止,一切正常。 现在ImageButtons,活动中还有两个:imageButton_left和imageButton_right。当我单击时imageButton_left,中的图像ImageView应左移,并且中的缩略图也RecyclerView应反映此更改。与的情况类似imageButton_right。 我能够旋转ImageView。但是,如何旋转缩略图RecyclerView?我如何获得ViewHolder的ImageView? 码: 活动XML: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.v7.widget.RecyclerView android:id="@+id/recyclerview" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="10dp" android:orientation="vertical"> <ImageView android:id="@+id/original_image" android:layout_width="200dp" android:layout_height="200dp" android:scaleType="fitXY" android:src="@drawable/image_not_available_2" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:gravity="center_horizontal" android:orientation="horizontal"> <ImageButton android:id="@+id/imageButton_left" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="20dp" android:background="@drawable/rotate_left_icon" /> <ImageButton android:id="@+id/imageButton_right" android:layout_width="wrap_content" android:layout_height="wrap_content" android:background="@drawable/rotate_right_icon" …

5
即使将页面向上或向下滚动,也可以在屏幕中间居中放置“ div”?
我的页面上有一个按钮,单击该按钮时div,屏幕中间会显示一个(弹出样式)。 我正在使用以下CSS将居中div在屏幕中间: .PopupPanel { border: solid 1px black; position: absolute; left: 50%; top: 50%; background-color: white; z-index: 100; height: 400px; margin-top: -200px; width: 600px; margin-left: -300px; } 只要页面没有向下滚动,此CSS就可以正常工作。 但是,如果将按钮放在页面的底部,则单击该按钮时,该按钮将div显示在顶部,并且用户必须向上滚动才能查看的内容div。 我想知道div即使在页面滚动时也如何在屏幕中间显示。
126 html  css  scroll  position  centering 

5
浮动权利和绝对位置不能同时使用
我希望div始终位于其父div的右侧,因此我使用float:right。有用。 但是我也希望它在插入时不影响其他内容,所以我使用position:absolute。 现在float:right不起作用,我的div始终位于其父div的左侧。如何将其向右移动?
125 css  css-float  position 


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.