前端
火星灰
这个作者很懒,什么都没留下…
展开
-
DIV居中的几种方法
1、 body{ text-align:center; } 缺点:body内所有内容一并居中2、.center{position: fixed;left: 50%;}缺点:需要设置position属性,网页复杂时容易扰乱页面布局,而且只是元素的起始位置居中3、.center{ width:500px; margin: 0 auto; }缺点:需要设置div宽度4、.cent...转载 2018-04-29 14:08:38 · 270 阅读 · 0 评论 -
HTML条件注释判断IE
<!--[if !IE]><!--> 除IE外都可识别 <!--<![endif]--><!--[if IE]> 所有的IE可识别 <![endif]--><!--[if IE 6]> 仅IE6可识别 <![endif]--><!--[if lt IE 6]> IE6转载 2018-04-29 23:51:04 · 471 阅读 · 0 评论