您好,欢迎访问一九零五行业门户网

bootstrap怎么清除浮动的样式

在bootstrap中,可以利用“.clearfix”辅助类来清除浮动的样式,辅助类是bootstrap提供的一组工具类,用于辅助项目的开发,只需要给需要清除浮动的元素设置类名为“.clearfix”即可,语法为“9a150cc8affe9c3374f95195a0e7ea5a”。
本教程操作环境:windows10系统、bootstrap5版、dell g3电脑
bootstrap怎么清除浮动的样式bootstrap提供了一组工具类,用于辅助项目的开发
前台用的是bootstrap做的,遇到需要清除浮动的,查过资料之后找到了个方法。
<div class="clearfix"></div>
在需要清除浮动的地方加上这个就行了!
示例如下:
<!doctype html><html><head><meta charset="utf-8"><title>bootstrap 实例 - 清除浮动</title><link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script><script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script></head><body><div class="clearfix" style="background: #d8d8d8;border: 1px solid #000;padding: 10px;"><div class="pull-left" style="background:#58d3f7;"> 向左快速浮动 </div> <div class="pull-right" style="background: #da81f5;"> 向右快速浮动 </div></div></body></html>
输出结果:
设置辅助类:
<div class="clearfix" style="background: #d8d8d8;border: 1px solid #000;padding: 10px;"><div class="clearfix" style="background:#58d3f7;"> 向左快速浮动 </div> <div class="pull-right" style="background: #da81f5;"> 向右快速浮动 </div></div>
输出结果:
相关推荐:bootstrap教程
以上就是bootstrap怎么清除浮动的样式的详细内容。
其它类似信息

推荐信息