htmlcss实现对话框右上⾓的删除按钮
点击某⼀个按钮,弹出对话框,需要在右上⾓添加删除按钮,其实很简单,需要创建⼀个对话框div,然后⽤css样式,固定位置top和right,如下:
(1)右上⾓的删除按钮css样式为:
.delete_right {
display: block;
手机上可以打html与css的appcursor: pointer;
width: 12px;
height: 12px;
position: absolute;
top: 22px;
right: 30px;
background: url(../img/icons.png) -48px -96px no-repeat;
}
(2)html代码为:
<div ng-show="base_view" class="labletitle"
delete_right"></a></div>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。