*CSS設定 [#sb614e4f] 設定例を記入してください #contents *背景表示(敷きつめて固定)して左右を少し空ける [#wf1dfa6f] body {background: url(http://画像ファイル) fixed; padding:0px 11px;} *上下左右に余白を取り行の高さを変更する [#c573700b] body {padding:10px 3px; line-height: 5px} *文字の大きさを変更 [#d6643c2b] font {font-size: 12px;} .btitle,.ttitle,.cap,.trip {font-size: 12px;} *太字に下線を引く [#wab664df] b {text-decoration:underline;} *横線の上下に余白 [#c67ada14] hr {margin: 0.5em 0 0.5em;} hr {margin: 2px; height:1px;} hr {margin: 0.1em 0 0.1em;} hr {width: 300px; height: 0px; border: 0px; border-top: 1px dotted #999; margin: 0.5em 0 0.5em;} *リンクの下線を消す [#f9a7cee5] a {text-decoration: none;} *リンクの下線を消して点線にする [#ia32ce27] a {text-decoration: none; border-bottom: 3px dotted;} *リンクの左右にスペースを空ける [#ac789a38] a[href] {padding:0 0.1em 0 0.1em;} *入力窓に薄く色をつける [#gdaa7f42] input,select {background-color: #CFFFCF;} *テキストボックス枠の大きさ変更 [#acc4bf8c] textarea {height: 200px;} *テキストボックスの幅を画面とあわせる [#r3c253e7] textarea {width:100%} *トリップを赤く大きくする [#qd861a24] .trip {color:red; font-size:120%;} *キャップを赤くする [#t650e3dd] .cap {color: red;} *スレタイを赤で強調する [#f15a4760] .ttitle {color: red; font-weight: bold;} |