a:hover img { opacity: .8; filter: alpha(opacity=80); -ms-filter: ‘alpha(o [ … ]
月別: 2017年7月
サイドにアイコンをつけたかったので。
普通にbeforeとafterだと文字の終わりになるので、 改行しても真ん中にいてほしかったので
1 2 3 |
<div class="h3-ttl-all"> <h3>サイドにアイコンつけたくて・・・夏</h3> </div> |
IE9対応にするためにすること
1 2 3 4 5 6 7 8 9 |
<!--[if lt IE 9]> <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="<?php bloginfo('template_url'); ?>/js/flexibility.js"></script> <script> $(function(){ flexibility(document.documentElement); }); </script> <![endif]--> |
IE9でflex-wrapが使えない問題に悩まされる。
IE9問題に悩まされる日々を過ごしております。 display:flexが真っ直ぐになったりしてレイアウト崩れを起こす 下記サイトを参考にいたしました。  [ … ]