Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/87.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Html 引导页脚菜单_Html_Css_Twitter Bootstrap - Fatal编程技术网

Html 引导页脚菜单

Html 引导页脚菜单,html,css,twitter-bootstrap,Html,Css,Twitter Bootstrap,我希望通过使用引导类来实现类似页脚菜单的功能 以下是基本的引导类: <footer class="footer"> <div class="container"> <p class="text-muted">Place sticky footer content here.</p> </div> </footer> 将粘性页脚内容放在此处 我可以知道,如何使用引导类制作页脚菜单吗 谢谢,一般的方法是使用

我希望通过使用引导类来实现类似页脚菜单的功能

以下是基本的引导类:

<footer class="footer">
  <div class="container">
    <p class="text-muted">Place sticky footer content here.</p>
  </div>
</footer>

将粘性页脚内容放在此处

我可以知道,如何使用引导类制作页脚菜单吗


谢谢,

一般的方法是使用引导的网格系统

<footer class="footer">
    <div class="container">
        <div class="row">
            <div class="col-md-3">
                <!-- other tags go here -->
            </div>
            <div class="col-md-3">
                <!-- other tags go here -->
            </div>
            <div class="col-md-3">
                <!-- other tags go here -->
            </div>
            <div class="col-md-3">
                <!-- other tags go here -->
            </div>
        </div>
    </div>
</footer>

还有其他功能,如偏移、嵌套或排序列等。要获得完整的指南,请查看

到目前为止,您尝试了哪些功能,可以让您预期所需的结果?
<div class="col-md-3 col-xs-6">...</div>