无论我尝试什么,使用CSS和Bootstrap都无法正常工作

时间:2016-07-24 13:26:13

标签: html css twitter-bootstrap

我正在使用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'"

由于

1 个答案:

答案 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>

results