我希望删除位于该框的right
。我该怎么做?
<div style="border-style: solid; border-width: 1px;">
name
<a style="position:relative;right:0%">delete</a>
</div>
&#13;
谢谢!
答案 0 :(得分:1)
使用position: absolute;
(相对于其容器的位置元素)而不是position: relative;
(相对于其原始位置的位置元素)。另外,将position: relative;
放在父元素上(以便链接相对于它定位,而不是树上的某些祖先)。
答案 1 :(得分:0)
你好试试使用右手
<a style="position:relative;right:0%;float:right">delete</a>
答案 2 :(得分:0)
将float:right
与删除:
<a style="position:relative;float:right;">delete</a>
<强> Here's the working fiddle 强>
答案 3 :(得分:0)
在float:right
a
<a style="position:relative; float:right">delete</a>