垃圾回收(Garbage
Collection,以下简称GC)是一些高级开发语言的一个核心部分,虽然所有的高级语言都在极力避免用户去关心它,然而对于编写高效的应用程序,理解GC是非常重要的。如果您已经了解GC的一些基础内容,那么本文将揭示一些在基于.net应用程序在windows系统上进行性能调优时...
分类:
Web程序 时间:
2014-05-30 07:05:32
阅读次数:
935
使用gradient的地方有:background-imageborder-imagelist-style-imagecontent
propertylinear-gradient:语法:Formal grammar: linear-gradient( [ | to ,]? [, ]+ )
...
分类:
Web程序 时间:
2014-05-30 02:56:32
阅读次数:
283
1. CSS文件必须使用UTF-8编码;2. CSS代码必须小写;3.
常量值不能加引号,除非值中含有空格。如:color:"red"是错误的,应把引号去掉;font-family:"Century Gothic";
如果名字中含有空格则必须加引号;4. background-img:url("im...
分类:
Web程序 时间:
2014-05-30 00:07:38
阅读次数:
315
.oLi-lists-scroll::-webkit-scrollbar { width:5px;
padding:1px; background:url(../images/repeat-bar.png) repeat-y;}/* Track
*/.oLi-lists-scroll::-webki...
分类:
Web程序 时间:
2014-05-29 19:02:39
阅读次数:
386
GC(Garbage
Collector,垃圾回收器)是一种自动回收内存的机制,释放已经不再使用的对象的内存空间。
在.NET平台中,我们的托管代码一般都不再关心内存的管理,一切都有CLR(Common language
Runtime)去帮我们完成了。当我们开辟内存空间用来创建对象时,使用new....
分类:
Web程序 时间:
2014-05-29 09:21:58
阅读次数:
576
解决方法有两种:一种是CSS,使用background-size:cover实现图片的拉伸效果,但是IE8及以下版本不支持background-size,于是可以使用微软的滤镜效果,但是IE6不支持。body{background:url(bg.jpg)
center center;backgrou...
分类:
Web程序 时间:
2014-05-29 02:51:39
阅读次数:
439
.container{ position: relative; width: 200px;
height: 200px; background: #abcdef; -webkit-border-radius: 20px;
-moz-border-radius: 2...
分类:
Web程序 时间:
2014-05-28 22:49:40
阅读次数:
336
background:url(logo2.png) no-repeat;
_background-image:none;
_filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’logo2.png’);
注意:滤镜的图片路径是以...
分类:
其他好文 时间:
2014-05-28 22:34:19
阅读次数:
276
题目如下:
Tree Summing
Background
LISP was one of the earliest high-level programming languages and, withFORTRAN, is one of the oldest languages currently being used. Lists,wh...
分类:
其他好文 时间:
2014-05-25 21:39:51
阅读次数:
276
background:url(背景图片路径)
no-repeat;/*不重复默认在左上方*/background:url(背景图片路径) no-repeat
center;/*不重复背景图片中间显示*/background:url(背景图片路径) no-repeat bottom center...
分类:
Web程序 时间:
2014-05-25 14:59:25
阅读次数:
276