aタグを画像を含めchildクラスすべてにしようとすると画像が大きくなってしまいます。
今書いてあるcssでaタグをchildクラス全体に与えたいのですが、どうすれば画像を大きくせずaタグを与えることができますか?
以下css
.parent {
background: lightblue;
display: flex;
}
.child {
background: lightgreen;
width: 30%;
margin:1%; justify-content:space-between; /* 追加 */
font-size:2vw;
}
.child>img
{
width:100%;
}
.child:hover
{
opacity: 0.6; filter: brightness(110%);
}
@media screen and (max-width: 800px) {
.parent {
flex-wrap: wrap;
}
}
@media screen and (max-width: 400px) {
.child
{width:90%;
background: lightblue;
display: flex;
border:1px solid #000;
margin:1% auto;
}
.child img
{width:40%;}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。