divの子要素のpタグのfont-sizeを20pxに指定するために親要素のdivにclass="txtm"としましたが、指定が反映されません。pに直接書けばいいのですが、毎回書かなければいけないので困っています。なぜ反映されないのでしょうか?
現状は、cssの上の方に書いたpタグの指定の14pxが生きたままになっています。
問題のコードの部分は、****で囲んでいます。
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="description" content=""> <title>Document</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous"> <link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <header> <div class="header"> <div class="header-left"> <img class="logo" src="img/isaralogo.png" alt="isaraロゴ画像"> <p>バンコクのノマドエンジニア育成講座</p> </div> <div class="right"> <a href="#form" class="btn btn-secondary">お問い合わせ / 資料請求はこちら</a> </div> </div> </header> <!-- top --> <div class="container-fluid mv-top"> <div class="row top-caption"> <div class="col-12"> <h1 class="caption-heading">プログラミングで<br>人生の安定を手にいれよう</h1> </div> <div class="col-12"> <img class="logo-lg" src="img/isaralogolarge.png" alt=""> </div> <div class="col-12"> <h2 class="caption-heading2">バンコクのノマドエンジニア育成講座<br>iSara[イサラ]</h2> </div> </div> </div> <!-- jumbotron contact--> <section class="contact"> <div class="jumbotron padding"> <div class="text-center"> **************************************************************************************************************************** <div class="text txtm"> <p>まずは20日間で、<br>月10万円稼げるスキルを手にいれよう。</p> <p><span>※受講料金は実質0円です。詳しくは資料請求をどうぞ。</span></p> <a href="#form" class="btn btn-primary"> お問い合わせ&資料請求はこちら </a> </div> <div class="students"> <p>第6期生:2019年11月25日 ~ 2019年12月14日<br>*締め切りました</p> <p>第7期生:2020年2月17日 ~ 2019年3月7日<br>*締め切りました</p> <p>第8期生:2020年4月〜5月ごろを予定<br>*資料請求受付中です</p> <div class="btn-wrap"> <ul> <li> <a href="#" class="btn btn-primary"><i class="fab fa-twitter">ツイート</i></a> </li> <li> <a href="" class="btn btn-primary"><i class="fas fa-thumbs-up">いいね!</i></a> </li> <li> <a href="#" class="btn btn-primary">シェア</a> </li> </ul> </div> </div> </div> </div> </section> *************************************************************************************************************************** <script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script> <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script> </body> </html>
html{ font-size: 10px; } body, p, h1, h2, h3, h4, h5, h6 { color: #333333; font-size: 14px; line-height: 1.6; font-family: "Hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS PGothic", sans-serif; letter-spacing: 1.5px; } header{ position: fixed; top: 0; z-index: 100; background: #fff; width: 100%; } .header{ display: flex; width: 1170px; margin: 0 auto; padding: 2rem 0; justify-content: space-between; } .header-left .logo{ width: 128px; } .header-left p{ display: inline-block; margin-bottom: 0; vertical-align: bottom; font-weight: 600; } .right{ background: #da6b64; padding: 11px 40px; border-radius: 3rem; } .btn{ font-size: 14px; font-weight: 300; color: #fff; text-decoration: none; width: 100%; height: 100%; } /* main */ .mv-top{ background: url(img/main.jpg) 0 0 no-repeat; background-size: contain; height: 0; padding-top: 41.08%; position: relative; } .top-caption{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; } .caption-heading{ font-size: 28px; font-weight: 600; } .logo-lg{ width: 317px; margin-bottom: 20px; } .caption-heading2{ font-size: 20px; font-weight: 600; line-height: 22px; } .padding{ padding: 30px 0; } *************************************************************************************************************************** .txtm { font-size: 20px; font-weight: 600; } *************************************************************************************************************************** .txtm span{ font-size: 90%; background: #fff; color: #c7254e; }
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/03/28 05:48
2020/03/28 07:28
2020/03/28 08:04