如何在“?”之前不断线?

时间:2016-05-30 08:20:31

标签: html css textwrapping

我是法国人。在法语中,问号“?”之前和之后必须有空格。但是,根据屏幕的大小,有时候“?”在下一行上线。如何防止这种难看的显示?

我无法在问题中添加标签,因为它们是绑定的。

<div class="row">
    <div class="col-md-8 col-md-offset-2">
        <div class="errorbox text-left">
            <p></p>
            <ul>
                <li>Question 1 ? </li>
                <li>Question 2 ? </li>
                <li>Question 3 ? </li>
            </ul>
        </div>
    </div>
</div>

谢谢,

斯特凡。

2 个答案:

答案 0 :(得分:2)

使用&nbsp;或尝试使用css white-space: nowrap;

<li>Question&nbsp;1&nbsp;? </li>
<li>Question&nbsp;2&nbsp;? </li>
<li>Question&nbsp;3&nbsp;? </li>

答案 1 :(得分:-1)

试试这段css。

li {
   white-space: nowrap;
}