1.
attach_innerdiv{
width: 100%;
height: 100%;
text-align: center;
position: relative;
top: 0px;
right: 0px;
z-index: 1;
}
.attach_deletediv{
width: 30px;
height: 30px;
position: relative;
top: -100%;
z-index: 2;
float: right;
}
可以根据position和z-index来将某个元素覆盖在另外一个上面,再通过top,left等来调节相对位置。
2.border要设置solid否则可能显示不出来。
border: 1px solid;
border-color: #eeeeee;
border-radius: 0.5rem;