3
在我看來,形式我有臺這樣的代碼:轉換表中angularjs div的使用CSS
<table class ="table table-bordered">
<colgroup span="7"></colgroup>
<tbody>
<tr ng-repeat="tr in rows">
<td ng-repeat="td in tr track by $index">
<span ng-bind-html="td"></span>
</td>
</tr>
</tbody>
現在我想從表更改爲按股利和下面是我的代碼:
<div ng-repeat = "tr in rows">
<div ng-repeat="td in tr track by $index">
<div><span ng-bind-html="td"></span></div>
</div>
</div>
但它不工作,我嘗試添加一些CSS是這樣的:
<style type="text/css">
div.inline { float:left; }
.clearBoth { clear:both; }
</style>
它根本不起作用。 。有什麼建議麼?
你能告訴我在上面的例子中如何實現不同寬度爲表不同細胞?任何幫助。 – shaaa 2017-02-08 18:00:56
@shaaa與Angular無關,只是CSS。你可以使用'width','padding','margin'等來爲單元格添加寬度。對於flex選項,它使用'flex-grow'。我鼓勵您在線搜索關於樣式化HTML表格和flexbox的文檔。 – floribon 2017-02-08 22:34:39