http://codepen.io/anon/pen/zGMdJw 点击按钮,我显示弹出
.cls{
border-radius:0px!important;
padding:0px!important;
width:100%!important;
}
答案 0 :(得分:1)
由于人们被告知不是保证金,所以它是由脚本来的左值。
如果您正在寻找css解决方案,请尝试以下方法:
.cls[style] {
left: 0 !important;
}
答案 1 :(得分:1)
元素ion-popover-view
已应用以下样式
style="top: 35px; left: 6px; margin-left: 0px; opacity: 1;"
所以,正如Maddy所说,你只需要在你的cls类中添加一个覆盖,就像这样
.cls{
border-radius:0px!important;
padding:0px!important;
width:100%!important;
left: 0px !important;
}