Bootstrap 4 .float-right 类
使用 Bootstrap 中的 float-right 类将元素放置在右侧。
默认文本对齐方式在左侧,而 float-right 类用于将文本对齐在右侧,就像以下代码段中一样 −
<div class="float-right"> This text is on the right. </div>
也可将其用于任何其他元素,例如,<h1>、<p> 等 −
<p class="float-right"> On the right </p>
你可以尝试运行以下代码来实现 float-right 类 −
示例
<!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>Example</h2> <div class="clearfix"> <div class="float-right">This text is on the right.</div><br> <div class="float-left">This text is on the left.</div><br> <div class="float-none">Float Removed</div><br> </div> </div> </body> </html>
广告