我无法修改以下代码以使其在移动设备上正确显示,我将其从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>
答案 0 :(得分:1)
现在它正在溢出时使用带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>