jquery 对象不允许将导航项放置在右侧

发布于 2024-12-29 16:57:57 字数 621 浏览 0 评论 0原文

我无法让向右的箭头(“下一个”)位于任一对象的右边缘。

我正在使用 ScrollToSerialScroll (有指向这些的链接,但无法发布它们)。

这是我的问题的示例: http://www.palosverdes.com/sandbox/ Problem/divs.cfm

我正在使用 Coldfusion 4.5 分别包含每个项目。
第一个带有绿色按钮的项目位于:http://www.palosverdes.com /sandbox/problem/serialscroll/extract.cfm

我本来要列出第二个项目的位置,但我只能发布两个超链接。

我尝试为每个元素定义特定宽度并使用 float: leftright 但我似乎无法将其放在我想要的位置。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

东京女 2025-01-05 16:57:57

您的包含内容违反了各种 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>.

静若繁花 2025-01-05 16:57:57

一个快速解决方法可能是更改标记 - 将浮动元素(即右箭头)放在您想要右侧浮动的任何内容之前。

当您浮动 .next 类时,您可以将其更改

<a href="#" class="prev"><img src="images/left.png"></a>
<ul><!-- list items --></ul>
<a href="#" class="next"><img width="38" src="images/right.png"></a>

为这样

<a href="#" class="prev"><img src="images/left.png"></a>
<a href="#" class="next"><img width="38" src="images/right.png"></a>
<ul><!-- list items --></ul>

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 this

<a href="#" class="prev"><img src="images/left.png"></a>
<ul><!-- list items --></ul>
<a href="#" class="next"><img width="38" src="images/right.png"></a>

into this

<a href="#" class="prev"><img src="images/left.png"></a>
<a href="#" class="next"><img width="38" src="images/right.png"></a>
<ul><!-- list items --></ul>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文