我需要在同一个div类中使用一个项目,在本例中为img,但定义不同。
示例:
section .row img {
margin: 0 0 30px;
width: 100%;
border: 4px solid #18a00e;
}
section .row img {
margin: 0 0 30px;
border: 4px solid #18a00e;
max-height: 300px;
}
如何创建和使用这两个定义,而不是最后一个定义覆盖前者? 谢谢。
稍后编辑(更多信息):
//this is the html code scenario 1 where I need the width: 100%//
<section class="container">
<div class="row">
<figure class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<img src="img/m3.jpg"/>
</figure>
</div>
</section>
//this is the html code for scenario 2, where I need max-height: 300px//
<section class="jumbotron">
<div class="unlockedl">
<div class="row">
<img src="img/pm1.jpg"/>
</div>
</div>
</section>
答案 0 :(得分:1)
您可以使用类来唯一地定位这些元素。使用.container
和.jumbotron
定位这些单独部分中的.row img
,而不是通用section
元素。
.container .row img {
margin: 0 0 30px;
width: 100%;
border: 4px solid #18a00e;
}
.jumbotron .row img {
margin: 0 0 30px;
border: 4px solid #18a00e;
max-height: 300px;
}
&#13;
<section class="container">
<div class="row">
<figure class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<img src="img/m3.jpg" />
</figure>
</div>
</section>
<section class="jumbotron">
<div class="unlockedl">
<div class="row">
<img src="img/pm1.jpg" />
</div>
</div>
</section>
&#13;
您还可以在这两个区块中使用其他唯一的类/元素,例如figure
和.unlockedl
section figure img {
margin: 0 0 30px;
width: 100%;
border: 4px solid #18a00e;
}
section .unlockedl img {
margin: 0 0 30px;
border: 4px solid #18a00e;
max-height: 300px;
}
&#13;
<section class="container">
<div class="row">
<figure class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<img src="img/m3.jpg" />
</figure>
</div>
</section>
<section class="jumbotron">
<div class="unlockedl">
<div class="row">
<img src="img/pm1.jpg" />
</div>
</div>
</section>
&#13;
或者您可以使用:nth-child()
定位各个部分
section:nth-child(1) .row img {
margin: 0 0 30px;
width: 100%;
border: 4px solid #18a00e;
}
section:nth-child(2) .row img {
margin: 0 0 30px;
border: 4px solid #18a00e;
max-height: 300px;
}
&#13;
<section class="container">
<div class="row">
<figure class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
<img src="img/m3.jpg" />
</figure>
</div>
</section>
<section class="jumbotron">
<div class="unlockedl">
<div class="row">
<img src="img/pm1.jpg" />
</div>
</div>
</section>
&#13;
答案 1 :(得分:0)
您应该分配一个唯一ID并将css分配给不同的ID
<div id ='id1' class='same_class'> </div>
<div id='id2' class='same_class'> </div>
#id1 {
width: 100%;
}
#id2 {
max-height: 300px;
}
.same_class{
margin: 0 0 30px;
border: 4px solid #18a00e;
}