我正在使用bootstrap库来创建我的网站,我想使用CSS来修改pare布局的部分,如背景颜色和jumbotron的颜色,但没有任何东西可以使它工作。
如何应用CSS与bootstrap一起工作。
tableB
import numpy as np
a = np.array([123456789012345678901234567890]) # a has dtype object now
print((a*2)[0]) # Works and gives the right result
print(np.exp(a)) # Does not work, because "'int' object has no attribute 'exp'"
由于
答案 0 :(得分:0)
你把css包裹在样式标签中吗?
<style type="text/css">
.jumbotron
{
background-color:red !important;
}
body
{
background-color:black;
}
</style>
<body>
<div class="body">
<div class="jumbotron">
<div class="container text-center">
<p>"Quote goes here"</p>
<h1>Site name</h1>
<p>Motto and slogan goes here</p>
</div>
</div>
</div>
</body>