Internet Explorer 8(IE8)で効かないcssプロパティ
* nth-child * nth-last-child * nth-of-type * nth-last-of-type * last-child * first-of-type * last-of-type * only-child * only-of-type
WPなど案件構築覚書
* nth-child * nth-last-child * nth-of-type * nth-last-of-type * last-child * first-of-type * last-of-type * only-child * only-of-type
/* フロート回り込み解除 .clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } * html .clearfix { zoom: 1; } /* IE6 */ *:first-child+html .clearfix { zoom: 1 […]
dl { width: 500px; border: 1px solid #999; border-top: 0; line-height: 1.5; background-color: #666; overflow: hidden; } dt { float: left; width: 130px; padding: 10px; border-top: 1px solid #999; font- […]
html, address, blockquote, body, dd, div, dl, dt, fieldset, form, frame, frameset, h1, h2, h3, h4, h5, h6, noframes, ol, p, ul, center, dir, hr, menu, pre { display: block; unicode-bidi: embed } li { […]
スタイルシートに下記を挿入する。 iframe[name="google_conversion_frame"] { position:absolute; }
@media(max-width:640px){ table{ border-collapse:collapse; } th,td{ float:left; clear:both; } }
ul { text-align: center; li { display: inline; } } ————- ul.ct{ left: 50%; margin: 0; position: relative; } ul.ct li { float: left; font-weight: bold; margin-right: 5px; left: […]
.box { position: relative; } .box:before { content: ""; position: absolute; z-index: -1; left: 20%; right: 20%; top: 50%; bottom: 0; border-radius: 700px 700px 700px 700px / 70px 70px 70px 70px; box-s […]
◯タイトルテキストによって色付きラインの長さを変える場合 spanで色線の長さを可変させる <div class="hTitle"> <h3 class="heading"><span>事業内容</span></h3> </div> .hTitle { border-bottom: 3px solid #cccccc; he […]
■css aタグのクラスに pointer-events: none; を設定。 反対に無効化したのを使用する際にはpointer-events: auto;を設定。 ——————– ■js $(function(){ $('a').click(function(){ return false; }) }); ※対 […]