初心者です。
一番下に設定したく試してみているのですがどうしても一行空いてしまいます。
ご助言お願い致します。
HTML
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4<meta charset="utf-8"> 5<meta name="description" content="****************************"> 6<link href="reset.css" rel="stylesheet" type="text/css" madia="screen"> 7<link href="style.css" rel="stylesheet" type="text/css" madia="screen"> 8<link rel="shortcut icon" href="/favicon.ico"> 9<meta name="viewport" content="width=device-width,initial-scale=1.0"> 10 中略 11 12<footer> 13 <div class="sita"> 14 <img src="imges/ks_logol.png" alt=""> 15 </div> 16 <p class="adores">****************</p> 17 <div class="itibansita"> 18 <p class="tel">*************** <span class="fax">****************</span></p> 19 </div> 20 <p class="kopi">©****************** All rights reserved</p> 21 </footer> 22</html>
CSS
1footer{ 2 margin-top: 40px; 3 background-color:#ffffe0; 4 width: 100%; 5 height: 150px; 6 bottom: 0; 7} 8.sita{ 9 margin: 0 auto; 10 width: 960px; 11 max-width: 100%; 12 margin-top: 80px; 13 text-align: center; 14} 15.sita img{ 16 margin: 0 auto; 17 width: 960px; 18 max-width: 100%; 19 width: 50%; 20 margin-left: auto; 21 margin-right: auto; 22} 23.itibansita { 24 text-align: center; 25 margin: 0 auto; 26 width: 960px; 27 max-width: 100%; 28} 29.itibansita p{ 30 text-align: center; 31 margin: 0 auto; 32 width: 960px; 33 max-width: 100%; 34 padding-top: 10px; 35} 36.adores{ 37 text-align: center; 38 margin: 0 auto; 39 width: 960px; 40 max-width: 100%; 41 font-size: 18px; 42 margn-top:-10px; 43} 44.tel{ 45 color: #ff7f50; 46 font-size: 23px; 47 font-weight:bold; 48 padding-top:5px; 49} 50.fax{ 51 color: #32cd32; 52 font-size: 23px; 53 font-weight:bold; 54} 55.kopi{ 56 text-align: center; 57 margin:0 auto; 58 width: 960px; 59 padding-top: 15px; 60 bottom: 0; 61 right:0; 62 left: 0; 63 font-size: 18px; 64}
「こうなっているが」「こうしたい」
を具体的に
可能なら図示してください。
<p class="kopi">©****************** All rights reserved</p>下の余白
(background-color:#ffffe0;の部分)を消したいということでしょうか?
回答1件
あなたの回答
tips
プレビュー