列表项中的文本换行
在以下页面上:
http://steve.brettatkin.com/Templates/3-column。 php
辅助导航重叠并且在文本换行时失去缩进。
这是 CSS 文件:
http://steve.brettatkin.com/inc/css /3-col.css
如何解决这两个问题?
谢谢!
布雷特
On the follow page:
http://steve.brettatkin.com/Templates/3-column.php
The secondary navigation is overlapping and loosing the indent when the text wraps.
Here is the CSS file:
http://steve.brettatkin.com/inc/css/3-col.css
How do I fix both issues?
Thanks!
Brett
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您希望缩进影响所有行(而不仅仅是第一行),您可能需要使用填充或边距而不是文本缩进。重叠是由您的
#navigation a { height: 25px; 引起的}
。You may want to use a padding or margin instead of text-indent, if you want the indent to affect all lines (not just the first). The overlap is caused by your
#navigation a { height: 25px; }
.