使用 Bootstrap 使元素在不同螢幕上浮動到左側
如果希望在小、中、大等不同裝置上將元素浮動到左側,那麼使用 float-*-left 類。
以下是可以使用的類 −
Small Devices: float-sm-left Medium Devices: float-md-left Large Devices: float-lg-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>Demo</h2> <div class="clearfix"> <div class="float-sm-left">This text is on the left (on small screen).</div><br> <div class="float-md-left">This text is on the left (on medium screen).</div><br> <div class="float-lg-left">This text is on the left (on large screen).</div><br> <div class="float-xl-left">This text is on the left (on extra large screen).</div><br> </div> </div> </body> </html>
廣告