href之间的空间

时间:2015-05-25 15:57:40

标签: html css css3

我有这个div。

 <div class="abc">
    <a href="#">Select All</a>
     <a href="#">#</a>
    {{#each letters}}
        <a href="#">{{this}}</a>
    {{/each}}
 </div>

打印类似enter image description here

的内容

但我希望得到类似的东西。

enter image description here

忽略星形图标。

我想在每个字母之间留出空格,并且还要改变href的颜色

已尝试

margin-left: 1.375rem;

但它没有用。

2 个答案:

答案 0 :(得分:3)

display: inline-block;中使用<a>并设置marginpadding

<强> CSS

a{
    display: inline-block;
    margin-right: 10px; //Adjust your needs
}

<强> DEMO HERE

答案 1 :(得分:0)

使用填充:

<a href="#" style="padding:3px">{{this}}</a>

当然,使用css类会更加清晰。