强制文本留在 Div 中
我有一个 div 中显示的面包屑页面。(25 像素高 x 700 像素宽)问题是我有太多页面,面包屑中的页面标题从 div 中溢出。有没有办法让最后几个面包屑页面强制将第一个面包屑页面放在看不见的地方,并显示 Div
希望中安装的最后一个面包屑页面,这是有道理的
问候
R
I have a breadcrumb pages showing in a div.( 25px high by 700px wide) The trouble is I have so many pages that the page titles in the breadcrumb are spilling out of the div. Is there a way for the last few breadcrumbs pages to force the first breadcrumb pages left out of sight and diplay the last ones fitted in the Div
Hope this makes sense
Regards
R
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,您可以使用
溢出
、浮动
和空白
。HTML:
CSS:
这将强制链接保持在一行上,并隐藏左侧溢出的任何文本,因此最后一个类别是可见的。
float:left
阻止面包屑从右边距开始。Yes, you can use
overflow
,float
andwhite-space
.HTML:
CSS:
This will force the links to stay on a single line and hide any overflowing text off the left hand side, so the last categories are visible. The
float:left
stops the breadcrumbs from starting from the right margin.这似乎在 Chrome 中有效;哎呀知道早期版本的 IE 会如何处理它:
HTML
CSS
http://jsfiddle.net/Bu4J5/2 /
This seems to work in Chrome; heck knows what earlier versions of IE will make of it though:
HTML
CSS
http://jsfiddle.net/Bu4J5/2/
您可以尝试
overflow:hidden
来隐藏超出div大小的内容,这样就不会破坏设计。您可以在以下位置获取更多详细信息:
http://www.brunildo.org/test/Overflowxy2.html
You can try
overflow: hidden
to hide the content beyond the div size so that it will not break the design.You can get more details about this at
http://www.brunildo.org/test/Overflowxy2.html
这是一个示例我将如何做到这一点
This is an example how I would do it