CSS样式: .contextMenu { position: absolute; min-width: 100px; z-index: 1000; background: #fff; border-top: solid 1px #CCC; ...
分类:
其他好文 时间:
2014-09-30 17:22:49
阅读次数:
256
当我们给某个图片做一个弹出层的时候,如果要让我们的弹出层显示一个小箭头,可以用css来画
用div来演示
div{
border:12px solid;
berder-color:transparent green transparent transparent;
height:0;
width:0;
}这样就可以显示一个小三角形...
分类:
Web程序 时间:
2014-09-28 22:21:45
阅读次数:
244
效果图:
、
css:
/* 带复选框的下拉框 */
ul li{
list-style: none;
padding:0px;
margin: 0px;
}
.select_checkBox{
border:0px solid red;
position: relative;
display:inline-block;
}
.chartQuota{
...
分类:
其他好文 时间:
2014-09-28 17:48:45
阅读次数:
212
html:1 css:1 .angle{2 width: 0px;3 height: 0px;4 border-bottom: 50px solid red;5 border-top: 50px solid transparent;6 border-left: 50px soli...
分类:
Web程序 时间:
2014-09-26 19:57:58
阅读次数:
148
1 2 1 .image,.image_particulars{float: left;}2 .image{width: 300px;border: 1px solid silver;}3 .image_particulars{width: 300px;height: 300px;border: 1...
分类:
其他好文 时间:
2014-09-26 19:49:08
阅读次数:
135
导航的js,用了一种比较笨的方法
1: $("#ananshi").hover(
2: function(){
3: $(this).parent().css({border:"1px solid #DBD1D1",backgroundColor:"#DBD1D1"});
4: /*$('#nanshi').show();*/
5: $('#nanshi').show();
6: $('#nvshi').hide...
分类:
其他好文 时间:
2014-09-26 11:33:08
阅读次数:
209
一、边框1.border-radius简略写法:div{border:2px solid #a1a1a1;border-radius:25px;/*IE9+、Firefox4+、Chrome、Safari5+、Opera*/-moz-border-radius:25px; /* 老的 Firefox...
分类:
Web程序 时间:
2014-09-25 19:58:17
阅读次数:
205
分页JS代码
.page{margin:2em;}
.page a{text-decoration:none;display:inline-block;line-height:14px;padding:2px 5px;color:#333;border:1px solid #ccc;margin:0 2px;}
.page a:hover,.page a.on{background:#999;c...
分类:
Web程序 时间:
2014-09-25 11:35:58
阅读次数:
217
Selector、shape详解(一)Selector的结构描述: shape的结构描述: android:endColor="#FFFFFF" android:angle="270" /> 下面是上面属性的说明solid:实心,就是填充的意思android:color指定填充的颜...
分类:
其他好文 时间:
2014-09-22 13:35:52
阅读次数:
236
问题描述:当父元素只包含浮动的元素的时候,且父元素没有设置高度,如果父元素设置了边框border,那么看起来子元素不在父元素之内。比如这样:html: CSS: div { border: 2px solid #000; } .left { ...
分类:
Web程序 时间:
2014-09-22 11:32:42
阅读次数:
567