Bootstrap 4 按鈕 .btn-outline-secondary 類
使用 btn-outline-seondary 類在 Bootstrap 4 中設定灰色邊框,以顯示不重要的資訊。
以下是設定 Bootstrap 按鈕以新增灰色邊框的程式碼 -
<button type="button" class="btn btn-outline-secondary"> More </button>
讓我們瞭解如何實現 btn-outline-secondary 類 -
例
<!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> <h2>Tools</h2> <p>The following are the tools:</p> <ul class = "list-group"> <li class = "list-group-item">Online Compiler</li> <li class = "list-group-item">Image Editor</li> <li class = "list-group-item">Image Optimizer</li> <li class = "list-group-item">Whiteboard</li> </ul> <p>For more tools, click below:</p> <button type="button" class="btn btn-outline-secondary">More</button> </body> </html>
廣告