脱字符号 Bootstrap 类
使用脱字符号指示下拉功能和方向。要获得此功能,请将类名为 caret 与 <span> 元素一起使用。
你可以尝试运行以下代码来实现 caret 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> <p>Caret Example<span class = "caret"></span></p> </body> </html>
广告