切换下拉菜单后显示以下输入字段:
main.html中
<ul class="dropdown-menu appExperience tileContextMenu">
<li class ="gridster-form"
role="form"
aria-labeledby="Gridster Layout Form"
alt="Tile Display Input column Input Row">
<span class="dropdown-text">
Col <input type="text" value='tiledata.col' ng-model="tiledata.col" class="input-col">
Row <input type="text" value='tiledata.row' ng-model="tiledata.row" class="input-row">
<i class= "fa fa-arrows"></i>
</span>
</li>
</ul>
</span>
这是我的css样式表,以防这可能有用
style.css
.tileContextMenu:after
{
content: '';
position: absolute;
border-style: solid;
border-width: 0 15px 15px;
border-color: #FFFFFF transparent;
display: block;
width: 0;
z-index: 1;
top: -15px;
left: 135px;
}
.tcm-chevron{
color: white;
padding-right: 10px;
float:right;
}
.input-col {
text-align: center;
width:25px;
height:25px;
}
.input-row {
text-align: center;
width:25px;
height:25px;
}
.gridster-form {
color: #000;
text-align: center;
}
有没有人知道如何修复输入字段?