字体大小CSS问题

时间:2019-02-14 22:43:34

标签: html css

我正在尝试在CSS中为特定的P标签添加字体大小更改。

我创建了一个新的类.mainbg p {xxxx},但这不起作用。奇怪的是,当我为该p添加文本阴影时,同一个类起作用。我不明白为什么它对此不起作用。

我添加了CSS类

.mainbg p {
  font-size: bold!important;
}

也什么也没做。

<section aria-label="home" class="mainbg" id="home">

<!-- intro -->
<div class="container">
<div class="row">
<div class="overlay-main v-align">
  <div class="col-md-10 col-xs-11">

    <h1 class="onStep" data-animation="animbouncefall" data-time="300">LOUIS WALLACE CONSTRUCTION</h1>
    <div class="onStep" data-animation="fadeInUp" data-time="600" id="slidertext">
      <h3 class="main-text">Oroville General Contractor</h3>
      <h3 class="main-text">Over A Decade Of Experience</h3>
      <h3 class="main-text">All Phases Of Construction</h3>
    </div>
    <p class="onStep" data-animation="animbouncefall" data-time="900" >No matter how large or small the project, we ensure that your project is completed with precision and professionalism. We take pride in our quality craftsmanship, our attention to detail, and our open line of communication with each and every customer. With each project, we understand that our role is about more than simply putting up walls — it’s about ensuring that your vision is turned into a reality.

我可以在模板中找到的唯一CSS是动画CSS:

.onStep{ opacity:0; }

当我搜索onStep的任何其他CSS时,除了javascript之外,什么都看不到。陷入困境。

1 个答案:

答案 0 :(得分:2)

您尝试了font-size: bold!important;,但这是font-weight属性,而不是font-size属性。这就是它不起作用的原因。 如果要更改字体的大小,则应使用某种单位,例如px,em ...

font-size: 40px;

如果您想将文本加粗,还可以使用:

font-weight: bold;