Bootstrap'small'标签与link_to rails helper不能很好地协同工作

时间:2014-02-06 22:52:44

标签: ruby-on-rails twitter-bootstrap

我遇到一个问题,让' - '(破折号)直接位于使用“@natelie_h”作为锚文本的链接前面。由于某种原因,它会将其分解到下一个链接。

<div class="span3">
          <blockquote><p>"My favourite part of the service is the information pack that comes with the flies"</p><p><small><%= link_to "@natelie_h", "https://twitter.com/natelie_h", :target => "_blank"  %> </small></p></blockquote>
        </div>

在这里你可以看到我的意思:http://www.clockworkflies.com/(客户引语,靠近底部)。

1 个答案:

答案 0 :(得分:1)

那是因为并且有一个显示:块,并且之前添加了“ - ”但是“ - ”是内联的,所以在新行上显示

  1. 尝试

    blockquote small a:before {     内容:“ - ”; }

  2. 在css中,而不是“blockquote small:before”

    1. 另一种选择是设置不显示:块但显示:blockquote small的内联块和blockquote small a。但是IE6和IE7不支持这个css变量