比较有用的样式
背景图水平垂直居中
background:#ebebeb url(/Images/BlogHTImg/bkht_jia.jpg) center center no-repeat;
背景图居左垂直居中
background:#ebebeb url(/Images/BlogHTImg/bkht_jia.jpg) left center no-repeat;
background:#ebebeb url(/Images/BlogHTImg/bkht_jia.jpg) 5px center no-repeat;//距离左边5px
背景图和文字显示在一行
background:#ebebeb url(/Images/BlogHTImg/bkht_jia.jpg) left center no-repeat;//距离左边5px
vertical-align:middle;
ie9 ie10中文字体不兼容
将中文字体名称转换为Unicode编码。
Unicode编码转换表:http://www.divcss5.com/jiqiao/j325.shtml
如下:
div{font-family:"宋体";}
转后:
div{font-family:"\5B8B\4F53";}