
CSS
文章平均质量分 87
IT菇凉
这个作者很懒,什么都没留下…
展开
-
网站配色,CSS主色调配色方案
一、红色的色感温暖,性格刚烈而外向,是一种对人刺激性很强的色。红色容易引起人的注意,也容易使人兴奋、激动、紧张、冲动、还是一种容易造成人视觉疲劳的色。 1、在红色中加入少量的黄,会使其热力强盛,趋于躁动、不安。 2、在红色中加入少量的蓝,会使其热性减弱,趋于文雅、柔和。 3、在红色中加入少量的黑,会使其性格变的沉稳,趋于厚重、朴实。 4、在红中加入少量的白,会使其性格变转载 2013-12-30 14:30:21 · 2938 阅读 · 0 评论 -
会员订单列表(一)
前端: 订单状态: 全部 待付款 已付款 待确认原创 2014-09-30 15:24:07 · 2084 阅读 · 0 评论 -
遮罩层
/遮罩层/ .ShowDIV{ display: none; background-color:#8F8F8F; width: 100%; height: 100%; top:0px; left:0px; position: fixed; filter:alpha(opacity=50); -moz-opacity:0.5; -khtml-opacity: 0.5; opacity: 0.5;原创 2016-04-28 18:50:38 · 420 阅读 · 0 评论 -
IE中CSS BUG
1、清除浮动 .clearfix:after{visibility:hidden;content:".";display:block;height:0;clear:both;} .clearfix{zoom:1;}2、IE6下float产生的双边距 .box{width: 200px; height: 200px; border:1px solid #00原创 2014-03-31 17:09:00 · 447 阅读 · 0 评论 -
超实用CSS代码
1.花式连字符(&)这个类应该在span元素里使用,并且里面包括&字符。它使用经典的serif字体和斜体来增强&符号。?123456789.amp { font-family: Baskerville, 'Goudy Old Style',原创 2014-03-01 14:07:55 · 833 阅读 · 0 评论 -
IE浏览器兼容
IE6中图片与图片间留白,解决(添加IMG的全局样式): img{border:0px; display:inline; vertical-align:bottom;} display:inline; 常用样式圆角样式: .span5{-webkit-border-radius:6px;-moz-border-radius:6px;}原创 2014-02-15 14:20:12 · 632 阅读 · 0 评论 -
截取字符串
#region 截取字符串可+.../// /// 功能:截取字符串长度/// /// 要截取的字符串/// 字符串长度/// true:加...,flase:不加/// public static string CutString(string str, int length, bool flg){int i = 0, j = 0;foreac原创 2014-02-14 13:51:18 · 509 阅读 · 0 评论 -
DIV中嵌套多个div,div下移ie浏览器兼容问题
.middle{ width:1222px; height:405px;margin:0 auto;}.middle .left{ width:200px; height:398px; border:2px solid RED; float:left; display:block;}.middle .center{ width:660px; height:248px; border:1原创 2014-02-22 16:18:23 · 1356 阅读 · 0 评论 -
CSS自定义鼠标形状
在 IE 下设置鼠标为手型的方法: cursor: hand,但是在 FIREFOX 中是无效的,解决方法是在FIREFOX中设置: cursor: pointer. 而这个pointer 值在IE和FIREFOX 下都是通用的,所以我们使用: cursor:pointer 就可以了一般而言,鼠标以斜向上的箭头显示,移到文本上时变为有头的竖线,移到超级链接上变为手型。但用c原创 2013-12-19 18:34:14 · 678 阅读 · 0 评论 -
鼠标悬浮时菜单效果
jQuery Background Test by http://www.mb5u.com<styletype="text/css">h2 {clear:both;padding-top:20px;}ul {list-style:none;margin:0;padding:0;}li {float:left;width:100px;margin:0;padding:0;text-align:c原创 2014-01-04 14:40:38 · 923 阅读 · 0 评论 -
城市筛选检索
# A B C D E F G H I J K L M N原创 2016-12-21 10:22:02 · 1181 阅读 · 0 评论