如何将文本置于标题的中心并为Bootstrap中的文本赋予颜色?

时间:2015-12-25 06:36:06

标签: html css twitter-bootstrap asp.net-mvc-4

我需要将文本带到标题的中心,并且还必须为Bootstrap中的文本添加颜色。 Bootstrap中没有Font-color或text-color选项。

这是我的HTML和CSS代码



#header {
  width: 800px;
  height: 50px;
  color :white;
}

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>

<div id="header" class="span12" style ="background-color :#003366; width :800px; height:50px; font-weight:bold; font-style :normal ;font-size:35px;">Customer</div>
&#13;
&#13;
&#13;

这就是它现在的样子:

enter image description here

4 个答案:

答案 0 :(得分:1)

使用color(例如:color:#bbddff;)更改文字的颜色,text-align:center指定要在div中心的文字。像这样:

&#13;
&#13;
#header {
  width: 800px;
  height: 50px;
  color :#bbddff;
  text-align:center;
}
&#13;
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>

<div id="header" class="span12" style ="background-color :#003366; width :800px; height:50px; font-weight:bold; font-style :normal ;font-size:35px;">Customer</div>
&#13;
&#13;
&#13;

如果此代码无效,您可能会遇到与这些代码冲突的其他样式。我的建议:

  1. 在浏览器上打开您的页面。
  2. 打开开发人员工具。
  3. 检查#header元素。
  4. 查看从哪里获取样式。
  5. 可能你的风格被其他地方覆盖了。

答案 1 :(得分:0)

<span class="test-span">This is span.</span>

.test-span{
 display:block;
 text-align:center;
 color:red;
}

Span is not a block element so to make text center in it, first need to make it block element and you can make that with above code.

要为任何文字着色,请使用CSS属性&#39; color&#39;并给出你的选择价值(例如:颜色:蓝色;)。

答案 2 :(得分:0)

只需添加text-align: centercolor: #FFFFFF 因为它是#header css

的白色

答案 3 :(得分:0)

你可以使用class =“text-center”这是一个例子。

    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
          <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
          <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>

    <body>

    <div class="container">
       <p class="text-center">Center aligned text.</p>
    </div>
</body>