html
1<!DOCTYPE html> 2<html> 3<head> 4 <title>fremee5</title> 5 <meta charset="utf-8"> 6 <link href="fremee5.css" rel="stylesheet" type="text/css"> 7 <!-- BootstrapのCSS読み込み --> 8 <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous"> 9 <!-- fontawesomeの読み込み--> 10 <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous"> 11</head> 12<body> 13 <header> 14 <P class="mgl-10"><</P> 15 <p class="text-center">HOME</p> 16 </header> 17<section> 18 <i class="fas fa-comments"></i> 19 <i class="fas fa-home"></i> 20 <i class="fas fa-bell"></i> 21 <i class="fas fa-user"></i> 22</section> 23<footer> 24<p class="text-center">@Fremee.inc</p> 25<p class="riyou">利用規約</p> 26<p class="pb">プライバシー</p> 27</footer> 28</body> 29</html>
css
1@charset "utf-8"; 2header{ 3 background-color: #7BC5AE; 4 width: 100%; 5 height: 80px; 6} 7header p{ 8 color: #ffff; 9 font-size: 40px; 10} 11.mgl-10{ 12 margin-left: 10px; 13} 14header h1{ 15 color: #ffff; 16 font-size: 40px; 17} 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35footer { 36 background-color: #7BC5AE; 37 width: 100%; 38 height: 100px; 39 bottom: 0; 40} 41 42footer p{ 43 color: #ffff; 44 font-size: 30px; 45} 46.riyou{ 47 float: right; 48 font-size: 16px; 49 margin-right: 40px; 50} 51.pb{ 52 float: right; 53 font-size: 16px; 54 margin-right: 20px; 55}
今の状態ですと、HOMEという文字がheaderの枠の中から飛び出してしまいます。
どうしてか教えてくださると幸いです。
回答1件
あなたの回答
tips
プレビュー