可折叠列表 - 使用多行显示所有标题

Collapsable List - Display all title using multiline

我在修改以下代码以使其在移动设备上正确显示时遇到问题,我从 W3 Schools 可折叠列表教程中复制它并针对桌面设备正确修改它。

但是在移动设备上,一半的文字被省略号截断了。

桌面

手机

我们将不胜感激任何帮助。 理想情况下,我想让标题部分跨越多行。

查看下面的代码了解更多信息。

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>

<div data-role="page" id="pageone">

    <div data-role="collapsible">
    <h4>Do I need to buy now?</h4>
No. Sign up for a free 30-day trial now. With NO obligations.
    </div>

    <div data-role="collapsible">
    <h4>Is the free trial fully functional?</h4>
Yes. The free trial comes with all of S2L features. You can give it a test run before you buy.
    </div>

    <div data-role="collapsible">
    <h4>Do I need a credit card to sign up for the trial?</h4>
No. We do not collect payment information until you are ready to buy.
    </div>

    <div data-role="collapsible">
    <h4>Do you provide a discount for yearly plans?</h4>
     Yes. You save 10% if you choose to pay yearly.
    </div>

    <div data-role="collapsible">
    <h4>How do I activate my trial to a paid version?</h4>
Once you have entered your payment information, you will receive an activation code by mail. <br>
Enter the code into the application and you are ready to go.
    </div>

  </div>
</body>
</html>

好吧,现在它在溢出处使用带有 white-space: nowrap; 的省略号,而不是换行。给你的文字一个 white-space: normal;.

CSS:

#pageone > div a {
  white-space: normal;  
}

#pageone > div a {
  white-space: normal;  
}
<!DOCTYPE html>
    <html>
    <head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
    <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
    </head>
    <body>

    <div data-role="page" id="pageone">

        <div data-role="collapsible">
        <h4>This title is super long and will overflow to a new line instead of using an ellipsis.</h4>
    No. Sign up for a free 30-day trial now. With NO obligations.
        </div>

        <div data-role="collapsible">
        <h4>This title is super long and will overflow to a new line instead of using an ellipsis.</h4>
    Yes. The free trial comes with all of S2L features. You can give it a test run before you buy.
        </div>

        <div data-role="collapsible">
        <h4>This title is super long and will overflow to a new line instead of using an ellipsis.</h4>
    No. We do not collect payment information until you are ready to buy.
        </div>

        <div data-role="collapsible">
        <h4>This title is super long and will overflow to a new line instead of using an ellipsis.</h4>
         Yes. You save 10% if you choose to pay yearly.
        </div>

        <div data-role="collapsible">
        <h4>This title is super long and will overflow to a new line instead of using an ellipsis.</h4>
    Once you have entered your payment information, you will receive an activation code by mail. <br>
    Enter the code into the application and you are ready to go.
        </div>

      </div>
    </body>
    </html>