答案 0 :(得分:2)
你想要你的按钮在第5个td吗?如果是,则删除此
#table button{
position: absolute;
top: 0px;
right: 5px;
height: 10px;
width: 1.5em
}
或者,如果您希望按钮位于此处(外表),请将#table button
替换为以下样式
#table button{
position: absolute;
top: 0px;
right: 5px;
}
并添加此
#table button:active{
position: absolute;
top: 0px;
right: 5px;
top: 1px;
box-shadow: 0 1px 1px rgba(0, 0, 0, .3) inset;
background-image: none
}
注意:您使用的是
position: absolute;
,请确保已将其包裹起来 在一个位置:相对;容器