如何使 UI 引导现有选项卡标题部分到移动视图中的下拉列表。
HTML:
<div>
<div ng-controller="TabsDemoCtrl">
<hr />
<tabset justified="true">
<tab ng-repeat="tab in tabs" heading="{{tab.title}}">
<div class="tab-content">
{{tab.content}}
</div></tab>
</tabset>
<hr />
</div>
CSS:
.tab-content {
text-align: center;
background-color: #eef0f1;
padding-top: 35px;
font-weight: 700;
}
JS小提琴链接:
目前 UI 选项卡视图更改为移动视图中的垂直线(我如何破解当前 UI 选项卡以使其下拉(仅在移动视图中)