実現したいこと
HTMLのコードの下の方にある、ボタンのコード(TOPページへ)の部分の文字サイズを変更したいのですが、sectionタグで囲っているので、cssのsection divの文字スタイルが適応されるのですが、ただ、section divのコードは他の文字(会社概要)という文字にも適応したいので、変更が出来ません。
付属画像1と2を参照
ボタンのコード(TOPページへ)の部分の文字の大きさを変更したいのですが、どうしたらよいのかわからず困っています。
試してみたこと
sectionタグの代わりになるようなタグarticleというタグがあるのですが、そのタグで、囲って、
cssでarticle divとかしてもボタン自体が表示されなくなりますし、
sectionタグに2を付けてsection2でくくっても表示されず。
html
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="utf-8"> 5 6 <title></title> 7 8 9 <link rel="stylesheet" href="reset.css"> 10 <link rel="stylesheet" href="companyhp3.css"> 11 12 <script src="jquery-3.6.0.min.js"></script> 13 <style type="text/css"> 14 /* レスポンシブ対応で右に出る謎の余白を無くす */ 15 .wrapper { 16 overflow: hidden; 17 } 18 19</style> 20 21 22<script> 23 $(function() { 24 const hum = $('#hamburger, .close') 25 const nav = $('.sp-nav') 26 hum.on('click', function(){ 27 nav.toggleClass('toggle'); 28 }); 29 }); 30 </script> 31</head> 32<body> 33 <!--wrapperレスポンシブ対応で右に出る謎の余白を無くすbody全体に適応--> 34<div class="wrapper"> 35 <section id="about"> 36 <div class="slide-bottom show">会社概要<span></span></div> 37 38 </section> 39 40 <section id="about2"> 41 <div class="slide-bottom show">・・・ご挨拶・・・<span></span></div> 42 43 </section> 44 45<!--カーソルを当てると色と背景色が変わるボタンの作成、cssに適応しています。--> 46<section id="service"> 47 48 49 50 <div class="slide-bottom show"><a href="#" class="button">TOPページへ</a></div> 51 52</section> 53 54 55 56 57 58 <script> 59 //フェードイン用のコードです 60 $(function(){ 61 $(window).on('load scroll', function() { 62 $(".show").each(function() { 63 var winScroll = $(window).scrollTop(); 64 var winHeight = $(window).height(); 65 var scrollPos = winScroll + (winHeight * 0.9); 66 if($(this).offset().top < scrollPos) { 67 $(this).css({opacity: 1, transform: 'translate(0, 0)'}); 68 } 69 }); 70 }); 71 }); 72 //フェードイン用のコードはここまでです 73 </script> 74</div> 75</body> 76</html>
css
1/* section *//* section */ /* section */ /* section */ 2section { 3 overflow: hidden; 4 text-align: center; 5 padding: 25px 0; 6} 7section div { 8 color:#6d6d6e; 9 font-size: 39px; 10 font-weight: 600; 11 vertical-align: -40px;/* 文字を垂直に下げる設定インライン要素のみ使用可能マイナスで下に移動 */ 12 display: inline-block;/* インライン要素にtext-align: center;を適応させるため 必須*/ 13 width: 100%;/* インライン要素にtext-align: center;を適応させるため100%必須 */ 14 text-align: center;/* ブロック要素のみしか本来適応できない */ 15} 16section p { 17 color:#7c7878; 18 font-size: 27px; 19 font-weight: 400; 20 vertical-align: -20px;/* 文字を垂直に下げる設定インライン要素のみ使用可能マイナスで下に移動 */ 21 display: inline-block;/* インライン要素にtext-align: center;を適応させるため 必須*/ 22 width: 100%;/* インライン要素にtext-align: center;を適応させるため100%必須 */ 23 text-align: center;/* ブロック要素のみしか本来適応できない */ 24 line-height:50px;/* 文字の行間の調節 */ 25 26} 27 /* sectionここまで *//* sectionここまで *//* sectionここまで *//* sectionここまで */ 28 29 30 31 32 /* フェードイン用のCSS */ 33/* 下からフェードイン */ 34.slide-bottom { 35 opacity: 0; 36 transform: translate(0, 20px); 37 transition: all 1s ease-out; 38 } 39/* 左からフェードイン */ 40.slide-left { 41 opacity: 0; 42 transform: translate(-20px, 0); 43 transition: all 1s ease-out; 44 } 45 46/* 右からフェードイン */ 47.slide-right { 48 opacity: 0; 49 transform: translate(20px, 0); 50 transition: all 1s ease-out; 51 } 52 53/* フェードイン用のCSSここまで */ 54 55 56 57/*変色ボタンのcss開始*/ 58/*変色ボタンのcss開始*/ 59 60 61/*カーソル当ててないない時のボタン内の文字カーソルで文字色白 背景紺色*/ 62#service a.button { 63 color: #293f4d;/*リンクボタンの中の文字色 カーソル当ててない時*/ 64 border: 1px solid #293f4d; 65 width: 200px; 66 67} 68/*ボタン内の文字カーソルで文字色白 背景紺色*/ 69#service a.button:hover { 70 color: #fff;/*カーソルを当てると指定した文字色カラーの変化*/ 71 background-color: #293f4d;/*カーソルを当てると指定した背景色カラーの変化*/ 72} 73 74a.button { 75 display: block; 76 77 margin: 0 auto; 78 padding: 15px 30px; 79 text-align: center;/*ボタンの配置中央*/ 80 81 transition: all .3s ease-out; 82} 83 84/*変色ボタンのcssここまで*/ 85/*変色ボタンのcssここまで*/ 86 87 88
回答1件
あなたの回答
tips
プレビュー