<form>>
<div class="form-group">
<div class="search-col">
<input type="text" class="form-control">
</div>
<div class="search-col">
<input type="text" class="form-control" >
</div>
</div>
</form>
<form>>
<div class="form-group">
<div class="search-col1">
<input type="text" class="form-control">
</div>
<div class="search-col1">
<input type="text" class="form-control" >
</div>
</div>
</form>
が、私はなくsearch-col1
の、form-group
とクラスsearch-col
のform-control
の行動を過剰乗りたい、次のHTMLにしました。どうやってやるの?
は、これは私があなたのCSSセレクタに一致しない
.form-group .form-control .search-col{
outline: none;
background-image: none;
-webkit-background-size: none;
-webkit-box-shadow: none;
-webkit-transition-duration: none;
}
クラスが異なるので、.search-colおよび.search-col1を使用しない理由がわかりません – Keith
[CSSセレクタ](https://developer.mozilla.org/en-US/docs/)を参照してください。 Web/Guide/CSS/Getting_started /セレクタ#Information_Selectors_based_on_relationships)。具体的には、A E:A要素の子孫である任意のE要素(つまり、子または子の子など) – showdev