CSSのコメントアウトについてご説明します。
CSSコメントアウト
CSSのコメントアウトは「/*」〜「*/」で囲んで記述します。下記は「header h1」のみコメントアウトした例となります。
header {
background-color: white;
padding: 20px 0 0 0;
}
/*
header h1{
width: 900px;
margin: 0 auto;
font-size: 32px;
}
*/
header p {
width: 900px;
margin: 0 auto;
}
コメントアウトの使い方
コメントアウトで囲んだ箇所の処理は実行されません。
それを活かして、WEBページのどの部分に対して書かれているのか目印を付けましょう。
下記のソースは各区切りごとに目印を付けているので、どこにスタイルが書かれているか把握しやすくなりました。
また、コメントアウトの文字を把握しておけば、ソース上の文字検索で対象箇所を探しやすくなります。
常に自分以外の人が見ても把握しやすいように構成することを意識しておきましょう。
@charset "UTF-8";
/* ========================================
リセットcss
========================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-style:normal;
font-weight: normal;
font-size: 100%;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
html{overflow-y: scroll;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: ''; content: none;}
input, textarea{margin: 0; padding: 0;}
ol, ul{list-style:none;}
table{border-collapse: collapse; border-spacing:0;}
caption, th{text-align: left;}
a:focus {outline:none;}
/* micro clearfix */
.cf:before,
.cf:after {
content: " ";
display: table;
}
.cf:after {clear: both;}
.cf {*zoom: 1;}
/* ========================================
ボディ
========================================= */
body {
font-family: "Helvetica","Verdana","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","MS Pゴシック","MS PGothic",sans-serif;
color: #555;
line-height: 1.3;
background-color: #F3F3F0;
}
body div:nth-child(2) {
background-color: #FFFFFF;
}
/* ========================================
ヘッダー
========================================= */
header {
background-color: white;
padding: 20px 0 0 0;
}
header h1{
width: 900px;
margin: 0 auto;
font-size: 32px;
}
header p {
width: 900px;
margin: 0 auto;
}
nav {
background-color: #f7f0da;
margin: 30px 0 0 0;
}
nav ul {
width: 900px;
margin: 0 auto;
}
nav ul li {
list-style: none;
display: inline-block;
}
/* 一時利用停止中css
nav ul li a {
font-size: 12px;
text-decoration: none;
margin: 0 30px 0 0;
display: block;
padding: 20px 0;
font-weight: 900;
color: #3b3b3b;
}
nav ul li a:hover {
color: #bababa;
}
*/
/* ========================================
メインコンテンツ
========================================= */
h2 {
color: #3b3b3b;
font-size: 22px;
padding: 40px 0 20px 0;
font-weight: 100;
}
div {
text-align: center;
}
div img {
width: 960px;
padding: 20px 0;
}
div ul {
max-width: 900px;
margin: 0 auto 50px auto;
list-style: none;
}
div ul li {
width: 240px;
padding: 30px 15px;
margin: 10px;
display: inline-block;
background-color: #fff;
border: 1px solid #e8e8e8;
font-size: 16px;
}
div ul li img {
width: 50%;
}
div ul li a {
text-decoration: none;
color: #3b3b3b;
line-height: 45px;
display: block;
}
div ul li a:hover {
color: #bababa;
}
/* ========================================
フッター
========================================= */
footer {
clear: both;
text-align: center;
background-color: #2D2D2D;
color: #fcfcfc;
padding: 30px 0;
font-size: 12px;
}
POINT
コメントアウトの機能を利用することで、見た目上わかりやすくなり、業務の効率も上がります。
コメント