PHP
p{
letter-spacing : 0.1em;
font-weight: bold;
text-align: center;
}
PHP
position:「absolute」「relative」「fixed」static 期値に配置しますabsolute 絶対位置への配置relative 相対位置への配置となります。fixed 絶対位置への配置
PHP
/* 重ね順100番目 */
z-index:100;
PHP
background-image:url(image.jpg);
background-repeat:no-repeat;
background-position:80% 40%; /* 左から80%,上から40%*/
Ultimate CSS Gradient Generator from ColorZilla
A powerful Photoshop-like CSS gradient editor
clearfix設定
回り込み禁止clearで margin-bottomが効かない、backgroundが出ない対策
clear・・・floatをただ解除するだけのもの
clearfix・・・floatを解除し、ブラウザのバグも回避できるハック
PHP
/* clearfix */
.clearfix{
zoom:1;
}
.clearfix:after{
content:"";
display: block;
clear: both;
height: 0;
visibility:hidden;
}
PHP
/*--リストアイコン設定---*/
list-style: square url('../images/ico32.gif') inside;
text-decoration:underline;
PHP
background-color:rgba(199,198,157,0.5);
PHP
pre{
white-space: pre-wrap;
word-wrap: break-word;
overflow: auto;
}