我有一个响应式 Web 应用程序,其中包含一些对于小移动屏幕来说太大的按钮。他们有太多的文字,所以他们最终离开了屏幕。我目前a
通过给他们引导类来使用标签作为按钮。所以代码目前看起来是这样的:
<a className='btn btn-default'>Here I have a button with long text in it, which causes some text to go off screen when in small mobile devices.</a>
我想在文本中添加一个换行符,这样它就不会离开屏幕(这就是为什么我不简单地添加一个<br/>
),而只会在小屏幕上。我怎么能那样做?
编辑:这是代码的更完整视图:
<div className='row'>
<div className='col-sm-12'>
<p>Some text which is irrelevant to the problem.</p>
<a className='btn btn-default'>Here I have a button with long text in it, which causes some text to go off screen when in small mobile devices.</a>
</div>
</div>