gpt4 book ai didi

html - 如何使用 jQuery Mobile 在按钮中显示多行段落文本?

转载 作者:行者123 更新时间:2023-11-28 08:59:16 24 4
gpt4 key购买 nike

是否有任何 CSS 技巧可以在按钮控件中显示多行文本段落。我不想要“pre”标签或 Javascript 解决方案,因为我会有大量的按钮小部件!,以下代码是为了您的方便:

 <!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.4/jquery.mobile-1.4.4.min.css">
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.4/jquery.mobile-1.4.4.min.js"></script>
</head>
<body>

<div data-role="page" id="pageone">
<div data-role="header">
<h1>Single Line Buttons</h1>
</div>

<div data-role="main" class="ui-content">
<a href="#" class="ui-btn">This should be a multiline Button containing sevaral lines of text like a paragraph</a>
</div>

<div data-role="footer">
<h1>Footer Text</h1>
</div>
</div>


</body>
</html>

最佳答案

对于您的示例代码,只需添加 CSS:

.ui-btn {
white-space: normal;
text-align: left;
}

正常的空白允许文本换行,而文本对齐给出标准的左对齐段落。如果您想保持居中对齐,只需从 CSS 中删除 text-align。

Here is a DEMO

关于html - 如何使用 jQuery Mobile 在按钮中显示多行段落文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26996712/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com