繁体   English   中英

Style.css不变

[英]Style.css does not change

我的style.css出现问题,我试图创建一个白框以隐藏文本,但它不会更新,任何帮助都会有所帮助。

 #advantages{ text-align: center; } #advantages .box { background: #ffffff; margin: 0 0 30px; border: solid 1px #e6e6e6; box-sizing: border-box; padding: 20px; box-shadow: 0px 2px 5px rgba(0, 0, 0, .3); } 
 <div class="advantages"><!-- advantages Begin --> <div class="container"><!-- container Begin --> <div class="same-height-row"><!-- same-height-row Begin --> <div class="col-sm-4"><!-- col-sm-4 Begin --> <div class="box same-height"><!-- box same-height Begin --> <div class="icon"><!-- icon Begin --> <i class="fa fa-heart"></i> </div><!-- icon Finished --> <h3><a href="#">We Love Our Products</a></h3> <p>We know to provide the best posible product ever</p> </div><!-- box same-height Finished --> </div><!-- col-sm-4 Finished --> <div class="col-sm-4"><!-- col-sm-4 Begin --> <div class="box same-height"><!-- box same-height Begin --> <div class="icon"><!-- icon Begin --> <i class="fa fa-tag"></i> </div><!-- icon Finished --> <h3><a href="#">Best Prices</a></h3> <p>Compare us with another site, who have the best prices.</p> </div><!-- box same-height Finished --> </div><!-- col-sm-4 Finished --> <div class="col-sm-4"><!-- col-sm-4 Begin --> <div class="box same-height"><!-- box same-height Begin --> <div class="icon"><!-- icon Begin --> <i class="fa fa-thumbs-up"></i> </div><!-- icon Finished --> <h3><a href="#">100% Original Products</a></h3> <p>We just offer you the best and original products.</p> </div><!-- box same-height Finished --> </div><!-- col-sm-4 Finished --> </div><!-- same-height-row Finished --> </div><!-- container Finished --> </div><!-- advantages Finished --> 

我希望他们成为白色盒子,隐藏文字,但没有任何变化

优势是一类,因此我们使用“。” 用于类,“#”用于ID,因此请替换

    #advantages

   .advantages

  <style> .advantages{ text-align: center; } .advantages .box { background: #fff; margin: 0 0 30px; border: solid 1px #e6e6e6; box-sizing: border-box; padding: 20px; box-shadow: 0px 2px 5px rgba(0, 0, 0, .3); } </style> 
 <div class="advantages"><!-- advantages Begin --> <div class="container"><!-- container Begin --> <div class="same-height-row"><!-- same-height-row Begin --> <div class="col-sm-4"><!-- col-sm-4 Begin --> <div class="box same-height"><!-- box same-height Begin --> <div class="icon"><!-- icon Begin --> <i class="fa fa-heart"></i> </div><!-- icon Finished --> <h3><a href="#">We Love Our Products</a></h3> <p>We know to provide the best posible product ever</p> </div><!-- box same-height Finished --> </div><!-- col-sm-4 Finished --> <div class="col-sm-4"><!-- col-sm-4 Begin --> <div class="box same-height"><!-- box same-height Begin --> <div class="icon"><!-- icon Begin --> <i class="fa fa-tag"></i> </div><!-- icon Finished --> <h3><a href="#">Best Prices</a></h3> <p>Compare us with another site, who have the best prices.</p> </div><!-- box same-height Finished --> </div><!-- col-sm-4 Finished --> <div class="col-sm-4"><!-- col-sm-4 Begin --> <div class="box same-height"><!-- box same-height Begin --> <div class="icon"><!-- icon Begin --> <i class="fa fa-thumbs-up"></i> </div><!-- icon Finished --> <h3><a href="#">100% Original Products</a></h3> <p>We just offer you the best and original products.</p> </div><!-- box same-height Finished --> </div><!-- col-sm-4 Finished --> </div><!-- same-height-row Finished --> </div><!-- container Finished --> </div><!-- advantages Finished --> 

尝试关注CSS...。

.advantages{
    text-align: center;
}
.advantages .box {
    background: #ffffff;
    margin: 0 0 30px;
    border: solid 1px #e6e6e6;
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM