Bootstrap 4 .float-left 类
使用 Bootstrap 中的 float-left 类将元素浮到左侧。
将其放在左侧 −
<h1 class="float-left"> I am on the left. </h1> <p class="float-left"> I am on the left. </p>
您可以尝试运行以下代码来实现 float-left 类 −
示例
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Example</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>Text</h2> <p>The following text is on the left:</p> <div class="clearfix"> <p class="float-left">I am on the left.</p> </div> </div> </body> </html>
广告