切换布局
显示结果
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap4 带有Font Awesome 图标的按钮 - 迹忆客(jiyik.com)</title> <!-- Bootstrap CSS --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <!-- Font Awesome CSS --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <style> .bs-example{ margin: 20px; } </style> </head> <body> <div class="bs-example"> <button type="submit" class="btn btn-primary"><span class="fa fa-search"></span> Search</button> <button type="submit" class="btn btn-secondary"><span class="fa fa-search"></span> Search</button> </div> <!-- JS files: jQuery first, then Bootstrap JS --> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script> </body> </html>