gpt4 book ai didi

twitter-bootstrap - Bootstrap 面板无法正常工作

转载 作者:行者123 更新时间:2023-12-04 16:34:32 25 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>GMP APP</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
<link rel="stylesheet" href="css/custom.css" type="text/css"/>
</head>
<body>
<div class="container">
<div class="panel panel-default">
<div class="panel-heading"> SignUp to the system </div>
<div class="panel-body">
<<panel content goes here>>
</div>
<div class="panel-footer"> You have 3 More attempts left! </div>
</div>
<script src="javascript/jquery.js"> </script>
<script src="javascript/bootstrap.js"> </script>
</div>
</body>
</html>

bootstrap 链接正确。但是面板不工作。!我尝试了一切。我确实假设我已经正确链接了相关的库。这是浏览器页面源码的输出...

最佳答案

面板在 bootstrap >= 4.1 中被丢弃。您应该改用现在卡片:

<div class="card">
<div class="card-header">
Header
</div>
<div class="card-body">
Body
</div>
<div class="card-footer">
Footer
</div>
</div>

https://getbootstrap.com/docs/4.1/components/card/

迁移说明: https://getbootstrap.com/docs/4.1/migration/

关于twitter-bootstrap - Bootstrap 面板无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44997374/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com