要向元素添加红色边框,您需要实现border-danger类。
红色边框会实施危险,您可以在其中设置危险消息。
实施边界危险非常容易-
<div class="new border border-danger"> Red Border </div>
让我们看一个使用边界危险Bootstrap 4类的示例-
<!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://cdn.staticfile.org/jquery/3.3.1/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script> <style> .new { width: 120px; height: 120px; margin: 20px; } </style> </head> <body> <div class="container"> <p>Rectangle with red border:</p> <div class="new border border-danger">Red Border</div> </div> </body> </html>