2016-12-05 73 views
0

編譯玉石標籤之間的空白我有一個看起來像這樣的角度模板:如何添加通過的WebPack

ul 
    li(ng-repeat-start="item in items") {{item.name}} 
    br(ng-repeat-end) 

是有可能有Li和BR或換行符之間的空間?我有這樣的:

{ test: /\.jade$/, loader: 'raw!jade-html' } 
module.loaders

webpack.config.js

回答

0

找到了解決辦法:

ul. 
    <li ng-repeat-start="item in items">{{item.name}}</li> <br ng-repeat-end/> 
0

其更好地使用CSS在libr,像之間的差距,

ul > li + br { 
    margin-top: 20px 
} 
+0

我需要有真正的空白爲了哈哈有這個CSS工作:http://stackoverflow.com/questions/40972768/how-to-distribute-li-elements-equally – jcubic