我正在尝试在CSS中为特定的p添加字体大小更改。
我做了一个新的课程.mainbg p { xxxx }
,但是这不起作用。奇怪的是,当我为该p添加文本阴影时,同一个类起作用。我不明白为什么它对此不起作用。
<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.
答案 0 :(得分:0)
似乎是另一个默认CSS覆盖了您的P标签样式。
在CSS声明中使用!important
。
例如:
.mainbg p {
font-size:12px !important;
}