gpt4 book ai didi

css - Bootstrap 词缀不适用于 bootstrap 类

转载 作者:技术小花猫 更新时间:2023-10-29 10:24:56 25 4
gpt4 key购买 nike

我对 bootstrap 比较陌生,并尝试使用 bootstrap 词缀设计我的页面。在代码中,当我从位于词缀目标 div 中的那个中删除我的 col-lg-6 类时,它工作得很好,但它不适用于那里应用的给定 Bootstrap 类。我当时删除了那个特定的类后尝试它工作得很好。

<body id="top" data-spy="scroll" data-target="#header">
<header id="header" style="background-position: 0% 0px;">
<a class="image avatar" style="cursor: pointer;">
<img src="resources/images/Nimesh.jpg" alt=""></a>
<h1><strong>Ata at Turpis</strong>, cep curae tempus<br> adipiscing erat ultrices laoreet<br> aliquet ac Adipiscing.</h1>

<ul class="nav nav-tabs nav-stacked" data-spy="affix">
<li class="active"><a href="#section-1">Section One</a></li>
<li><a href="#section-2">Section Two</a></li>
<li><a href="#section-3">Section Three</a></li>
<li><a href="#section-4">Section Four</a></li>
<li><a href="#section-5">Section Five</a></li>
</ul>

</header>

<div id="profileImage">

</div>

<div id="main">
<div id="section-1" class="background">
<div class="col-lg-6">
<!--content 1a -->
</div>
<div class="col-lg-6">
<!--content 1a -->
</div>
</div>

<div id="section-2" class="background">
<div class="col-lg-6">
<!--content 2a -->
</div>
<div class="col-lg-6">
<!--content 2b -->
</div>
</div>

<div id="section-3" class="background">
<div class="col-lg-6">
<!--content 3a -->
</div>
<div class="col-lg-6">
<!--content 3b -->
</div>
</div>

<div id="section-4" class="background">
<div class="col-lg-6">
<!--content 4a -->
</div>
<div class="col-lg-6">
<!--content 4b -->
</div>
</div>

<div id="section-5" class="background">
<div class="col-lg-6">
<!--content 5a -->
</div>
<div class="col-lg-6">
<!--content 5b -->
</div>
</div>
</div>
</body>

最佳答案

这个问题可以分为两部分:

  1. 使用 Bootstrap 网格系统(例如 col-lg-6)
  2. 将 Bootstrap Affix 与您的部分一起使用


1。 Bootstrap网格系统

要使网格系统正常工作,需要 3 个类:.container , .row , .col-xs-* .

  • .container : 应该添加到文档的包装中。
  • .row : 当你想设置列时,你必须用 .row 包裹这些列 wrapper 。
  • .col-xs-* :您可以在此处设置内容的宽度。

所以你的文档应该是这样的:

<div class="container">
<div class="row">
<div class="col-xs-3"></div>
<div class="col-xs-6"></div>
<div class="col-xs-3"></div>
</div>
</div>

网格系统的文档是here .

在您的情况下,您似乎没有提供 .row也不.container对于您的专栏,因此实际布局会在某种程度上被破坏和意外。我想这可能就是为什么如果你删除那些 col-lg-* 的原因它可以按您的意愿工作。


2。 Bootstrap 词缀

official document for Affix 实际上很模糊。基本上,当您向下滚动文档时,<div data-spy="affix">元素将从以下状态转变:

  1. 添加.affix-top加载页面时到您的 spy 元素
  2. 每当您滚动到 data-offset-top 的值时,它将删除 .affix-top类并添加一个 .affix类到同一元素。
  3. 每当您滚动到 data-offset-bottom 的值时,它将删除 .affix类并添加一个 .affix-bottom类到同一个元素。

如文档所述,您必须为这些类设置 css 规则才能使词缀插件正常工作。

您必须设置 3 个重要规则:1..affix-top的宽度, .affix , .affix-bottom2.当你的词缀元素被固定时你想要的位置3.恢复.affix-bottom位置来自 fixedabsolute

所以你的 css 应该是这样的:

.affix {
top: 0;
width: 100%;
}

.affix-top {
width: 100%;
}

.affix-bottom {
position: absolute;
width: 100%;
}


这是一个粗略的 Codepen使用词缀的例子。我已经复制了你的代码,无论你添加 col-lg-6 都有效在你的部分或不。您可以调整窗口大小以查看 2 列布局。

需要提及的一件事是,我不太确定为什么将词缀元素放在页眉中,因为在大多数设计案例中它用于在侧边栏上显示部分标题列表。从这个意义上讲,我将它从标题移出到主要区域,并在网格中设置了一个列。

希望这会有所帮助。

关于css - Bootstrap 词缀不适用于 bootstrap 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29415032/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com