创建无限水平线

发布于 2024-11-28 17:41:55 字数 230 浏览 0 评论 0原文

我想创建一个无限的水平 div。但是,我不知道该怎么做。

有人可以帮助我使用 此代码 作为起点吗?

请查看这张图片来了解这个无限水平div应该是什么样的。

谢谢你!

I'd like to create an infinite horizontal div. However, I have no idea about how to do it.

Can someone help me to do it using this code as a start point?

Please, take a look at this image to understand how this infinite horizontal div should be.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

—━☆沉默づ 2024-12-05 17:41:55

我所说的“无限”是指到wiewport/窗口的末尾。您可以尝试绝对定位的元素;

这将是一个覆盖层,出现在正常文档流中的任何内容之上

html

<div id="line"> </div>

css

#line {
    position: absolute;
    right: 0;
    margin-left: 100px;
    left: 50%; /* seeing as content is centered, make margin-left start at center of page */
    bottom: 10%;
    height: 20px;
    background-color: red;
}

演示位于:http://jsfiddle.net/PstWc/2/

By "infinite" i am assuming you mean to the end of the wiewport/window. You could try an absolutely positioned element;

this will be an overlay, appearing on top of anything in normal document flow

html

<div id="line"> </div>

css

#line {
    position: absolute;
    right: 0;
    margin-left: 100px;
    left: 50%; /* seeing as content is centered, make margin-left start at center of page */
    bottom: 10%;
    height: 20px;
    background-color: red;
}

Demo at: http://jsfiddle.net/PstWc/2/

木落 2024-12-05 17:41:55

您可以将 1 像素高的 div 设置为 100% 宽度:

 <div class="inf_line">
     
 </div>


.inf_line {width: 100%; height: 1px; background-color: #333; margin-bottom: 10px;}

示例

可能不是最优雅的方式,但它是一种方式。

You can use a 1px high div set to 100% width:

 <div class="inf_line">
     
 </div>


.inf_line {width: 100%; height: 1px; background-color: #333; margin-bottom: 10px;}

Example.

Might not be the most elegant way to do it, but it's a way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文