我的代码如下所示:
<!doctype html>
<html ng-app="ui.bootstrap.demo">
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.16/angular.js"></script>
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-0.12.1.js"></script>
<script src="example.js"></script>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div ng-controller="TabsDemoCtrl">
<tabset>
<tab heading="Tab1">content 1</tab>
<tab heading="Tab2">content 2</tab>
<tab heading="Tab3">content 3</tab>
</tabset>
</div>
</body>
</html>
此代码创建默认选项卡集,如下 plunker 代码所示:
http://plnkr.co/edit/?p=preview&s=gYWtjBltWXYqhczs
我希望我的标签集看起来像这张图片中的标签标题在底部。
请指导我如何实现这一目标?