Bootstrap 类拉到最右边
用类 拉到最右边 将一个元素浮到最右边。
您可以尝试运行以下代码来实现拉到最右边类
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "pull-right"> Float to right </div> </body> </html>
广告