jquery 对象不允许将导航项放置在右侧
我无法让向右的箭头(“下一个”)位于任一对象的右边缘。
我正在使用 ScrollTo
和 SerialScroll
(有指向这些的链接,但无法发布它们)。
这是我的问题的示例: http://www.palosverdes.com/sandbox/ Problem/divs.cfm
我正在使用 Coldfusion 4.5 分别包含每个项目。
第一个带有绿色按钮的项目位于:http://www.palosverdes.com /sandbox/problem/serialscroll/extract.cfm
我本来要列出第二个项目的位置,但我只能发布两个超链接。
我尝试为每个元素定义特定宽度并使用 float: left
和 right
但我似乎无法将其放在我想要的位置。
I cannot get the right-facing arrow ("next") to sit on the right edge of either object.
I'm using ScrollTo
and SerialScroll
(had links to these but cannot post them).
Here's where the example of my problem is: http://www.palosverdes.com/sandbox/problem/divs.cfm
I'm using Coldfusion 4.5 to include each item separately.
The first item with the green buttons is at: http://www.palosverdes.com/sandbox/problem/serialscroll/extract.cfm
I was going to list where the second item is but I can only post two hyperlinks.
I've tried defining specific widths for each element and using float: left
and right
but I cannot seem to get it where I want it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的包含内容违反了各种 HTML 验证规则。您不能将
标记嵌入其他
标记内。文档只能包含一对
标记。 extract.cfm 应仅包含
标记内的内容。您可以将脚本和 css 标记移动到父 cfm
。
Your includes are violating all kinds of HTML validation rules. You can't embed
<html>
tags inside other<html>
tags. A document should only contain one pair of<html>
tags. The extract.cfm should only include the content within the<body></body>
tags. You can move the script and css tags to the parent cfm<head>
.一个快速解决方法可能是更改标记 - 将浮动元素(即右箭头)放在您想要右侧浮动的任何内容之前。
当您浮动
.next
类时,您可以将其更改为这样
A quick fix could be to change the markup - put floated elements (i.e. the right arrow) before whatever you wanted floated right of.
seeing as you floated the
.next
class ,you can change thisinto this