将文本换行在列表项/按钮中,而不是隐藏溢出
我试图覆盖 jQuery Mobile 中列表项和按钮的默认行为,其中的文本不适合一行作为隐藏溢出。
如果您在浏览器窗口或 iPhone 上查看此内容,您就会明白我的意思:http://m.gizmag.com
我'我希望能够将每个列表项的 h3 和 p 标记中的文本换行到新行。
提前致谢!
I'm trying to override the default behavior of list items and buttons in jQuery Mobile, which has text which doesn't fit on one line as hidden overflow.
If you view this on a skinny browser window or iPhone you'll see what I mean: http://m.gizmag.com
I'd like to be able to wrap the text in the h3 and p tags of each list item onto new lines.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试为元素设置
white-space:normal
样式。我只是使用 jQuery Mobile 列表视图样式
li
内的锚点 () 元素来完成此操作,并且它按照我的预期包装了文本。我使用 Chrome 的开发人员工具来确定 CSS 属性的来源,并以交互方式更改它们,使其按照我想要的方式工作。
--
德里克
Try setting a style of
white-space:normal
for the elements.I just did this with an anchor (
<a>
) element inside a jQuery Mobile listview-styledli
, and it worked to wrap the text as I expected. I used Chrome's developer tools to determine where the CSS attributes were coming from and interactively changed them to make it work the way I wanted.--
Derek
如果可行,将其包含在
内也会使其换行。 (但是找到受影响的元素并声明
white-space:normal
是更合适的解决方案)来源:http://forum.jquery.com/topic/list-items-are-truncating-text-is-there-a -绕过这个
If feasible, enclosing it inside a
<div>
will also make it wrap. (But finding the affected element and declaringwhite-space:normal
is the more proper solution)Source: http://forum.jquery.com/topic/list-items-are-truncating-text-is-there-a-way-around-this