gpt4 book ai didi

在 html 中使用 bootstrap 调整浏览器窗口大小时,html 元素是否自适应?

转载 作者:行者123 更新时间:2023-11-28 08:09:21 25 4
gpt4 key购买 nike

我需要对更改了 css 的 div 元素使用 Bootstrap 。我尝试使用 col-xs-* 和 col-md-* 作为 div,但它不起作用。我需要有关浏览器何时调整其大小以适应页面的帮助。

HTML:

<body ng-controller="MainCtrl">   
<div class="pull-right metrics-section ng-scope">
<span class="metrics-header-section col-sm-2 ng-scope"
ng-repeat="items in metrics">
<p class="ng-binding">{{items.value}}</p>
<p>{{items.name}}</p>
<p class=" metrics-divider"> </p>
</span> </div> </body>

.css:

.metrics-section {
background-color: #b6b5b5;
border-radius: 3px;
height: 31px;
margin-top: 0px;
}

.metrics-header-section {
font-size: 12px;
color: #003265;
width: 155px;
height: auto;
padding-top: 1px; }

.metrics-header-section p:not(.metric-divider) {
margin: 2px;
width: auto;
text-align: center;
display:block;
}

.metrics-header-section p:first-child {
font-size:13px;
color:#3D6186;
}

.metrics-header-section p:nth-child(2) {
font-size:9px;
color:#3D6186;
}
span.metrics-header-section > p.metrics-divider {
position: relative;
bottom: 25px;
border-right: 1px solid #003265;
height: 20px;
}

.metrics-header-section:nth-child(4) > p.metrics-divider {
position: relative;
bottom: 15px;
border-right: none;
height: 20px;
}

.js:

var app = angular.module('plunker', []);

app.controller('MainCtrl', function($scope) {
$scope.metrics = [
{name : "COMPLETED", value : "12"},
{name : "EXCEEDING", value : "18"},
{name : "APPROACHING", value : "10"},
{name : "AVAILABLE", value : "40"}
];
});

输出如下:

   12           18          10           40
COMPLETED | EXCEEDING | APPROACHING | AVAILABLE

最佳答案

您需要加载 Boostrap 的 CSS,而不仅仅是 Javascript。将此添加到 <head>标签:

 <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css">

关于在 html 中使用 bootstrap 调整浏览器窗口大小时,html 元素是否自适应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29352634/

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