用 Bootstrap 新增黃色標籤(宣告警告)
在 Bootstrap 中使用 .label-warning 類來新增黃色標籤。
你可以嘗試執行以下程式碼來實現.label-warning 類 −
示例
<!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 = "container"> <p>Warning label</p> <span class = "label label-warning">Warning</span> </div> </body> </html>
廣告