ソースの件 - rysyy913 - 2007/11/30(Fri) 12:46:06 [No.625] |
└ Re: ソースの件 - テツヤ - 2007/11/30(Fri) 21:10:17 [No.626] |
└ Re: ソースの件 - rysyy913 - 2007/12/01(Sat) 13:02:23 [No.627] |
└ Re: ソースの件 - テツヤ - 2007/12/01(Sat) 15:22:40 [No.628] |
└ Re: ソースの件 - rysyy913 - 2007/12/01(Sat) 17:00:59 [No.629] |
└ Re: ソースの件 - rysyy913 - 2007/12/01(Sat) 17:42:55 [No.630] |
└ Re: ソースの件 - テツヤ - 2007/12/01(Sat) 20:25:19 [No.631] |
└ Re: ソースの件 - 913 - 2007/12/02(Sun) 19:19:00 [No.637] |
└ Re: ソースの件 - テツヤ - 2007/12/02(Sun) 20:56:44 [No.638] |
└ Re: ソースの件 - 913 - 2007/12/03(Mon) 11:27:34 [No.639] |
└ Re: ソースの件 - テツヤ - 2007/12/03(Mon) 19:38:30 [No.640] |
└ Re: ソースの件 - 913 - 2007/12/03(Mon) 20:37:01 [No.641] |
└ Re: ソースの件 - テツヤ - 2007/12/03(Mon) 21:24:16 [No.642] |
└ Re: ソースの件 - 913 - 2007/12/04(Tue) 14:45:05 [No.643] |
└ Re: ソースの件 - rysyy913 - 2007/12/02(Sun) 18:54:02 [No.636] |
└ Re: ソースの件 - rysyy913 - 2007/12/02(Sun) 18:13:01 [No.634] |
└ Re: ソースの件 - rysyy913 - 2007/12/02(Sun) 15:14:14 [No.632] |
└ Re: ソースの件 - 913 - 2007/12/02(Sun) 18:21:41 [No.635] |
└ Re: ソースの件 - テツヤ - 2007/12/02(Sun) 16:09:06 [No.633] |
> > なぜか「</layer>」が入ってますね。不要ですが。 > 削除したというより、トップページ以外のページで模範とするソースを張り付けました。すると全体の文字が上になり左に寄りました。前の配列の方が余裕がありよかったです。 トップページを観ると、index.html《 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <TITLE>柿木義一さんの応援HP</TITLE> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <meta http-equiv="Content-Style-Type" content="text/css"> <link rel="stylesheet" href="styles4.css" type="text/css"> <style type="text/css"> <!-- h1{ font-weight : bold; line-height : normal; word-spacing : normal; letter-spacing : normal; vertical-align : middle; text-indent : inherit; white-space : normal; } --> </style> <LINK href="siro22.ico" rel="SHORTCUT ICON"> <style> <!-- .big{font-size:200%; line-height:120%;} --> </style> </head> 》ですが、 スタイルシートは共通に「Kakinoki/styles.css」にしたんですよね?、それなら「styles4.css」は不要ですね。 よって、《 <link rel="stylesheet" href="Kakinoki/styles.css" type="text/css"> 》となる。 それからその後の行にSTYLE要素があるが、これも不要というか「Kakinoki/styles.css」に記述を入れるべきですね。 よって、《 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <TITLE>柿木義一さんの応援HP</TITLE> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <meta http-equiv="Content-Style-Type" content="text/css"> <link rel="stylesheet" href="Kakinoki/styles.css" type="text/css"> <LINK href="siro22.ico" rel="SHORTCUT ICON"> </head> 》となります。 そしてスタイルシート、「Kakinoki/styles.css」は《 /* 「柿木義一さんの応援HP」用スタイルシート */ /* 編集:2007.12.01 */ BODY {background-image:url("2kaimizu.gif"); MARGIN:10px 5px 5px;LINE-HEIGHT:120% ;} H1{ font-weight : bold; line-height : normal; word-spacing : normal; letter-spacing : normal; vertical-align : middle; text-indent : inherit; white-space : normal; } H5 {margin-top:0px; margin-bottom:0px; font-weight:normal; font-size:12pt; line-height:113%;} .I1 {text-indent:-1em; margin-left:1em;} .F2 {font-size:10pt; line-height:113%;} .list{line-height:150%;} .TAC{text-align:center;} .lh2{line-height:150%;} .big{font-size:200%; line-height:120%;} TABLE{line-height:120%;} TABLE.Rireki {margin-left:2em; font-size:10pt; line-height:113%;} TABLE.VAT TR{vertical-align:top} P{margin-top:10px; margin-bottom:10px; line-height:120%;} UL.kajyougaki LI{letter-spacing:1px} 》となります。 >すると全体の文字が上になり左に寄りました。前の配列の方が余裕がありよかったです。 …ということは、BODYのmarginの指定を変えたらどうですか?。 例えば《 BODY {background-image:url("2kaimizu.gif"); MARGIN:10px 10px 10px 10px; LINE-HEIGHT:120%;} 》 [No.628] 2007/12/01(Sat) 15:22:40 |