2014年8月7日

Codeforces Round #256 (Div. 2) A. Rewards

摘要: A. Rewardstime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputBizon the Champion is called the Champi... 阅读全文

posted @ 2014-08-07 16:19 jec 阅读(162) 评论(0) 推荐(0) 编辑

Codeforces450 B. Jzzhu and Sequences

摘要: B. Jzzhu and Sequencestime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputJzzhu has invented a kind o... 阅读全文

posted @ 2014-08-07 16:16 jec 阅读(258) 评论(0) 推荐(0) 编辑

2014年8月5日

CSS Specificity(特殊性)

摘要: CSS的特殊性是非常重要却又经常被忽视的属性,特别是在团队合作下的产品迭代开发中,因为不注重CSS的特殊性最后导致某些代码混乱不堪,这里就把自己对CSS特殊性的认识做一些归纳总结.CSS的特殊性(specificity)也可以称为CSS的优先级或权值:对于每个样式表规则,浏览器都会计算选择器的特殊性... 阅读全文

posted @ 2014-08-05 16:01 jec 阅读(316) 评论(0) 推荐(0) 编辑

CSS3 @font-face的url要添加?#iefix的原因

摘要: 转至:https://github.com/CSSLint/csslint/wiki/Bulletproof-font-faceWhen using @font-face to declare multiple font types for cross browser compatibility, ... 阅读全文

posted @ 2014-08-05 09:39 jec 阅读(1305) 评论(0) 推荐(1) 编辑

CSS3 @font-face

摘要: 转至:W3CPLUS 网址:http://www.w3cplus.com/content/css3-font-face@font-face是CSS3中的一个模块,他主要是把自己定义的Web字体嵌入到你的网页中,随着@font-face模块的出现,我们在Web的开发中使用字体不怕只能使用Web安全字体... 阅读全文

posted @ 2014-08-05 09:35 jec 阅读(161) 评论(0) 推荐(0) 编辑

2014年8月4日

CSS3 Media Queries

摘要: 转至:W3CPLUS 网址http://www.w3cplus.com/content/css3-media-queriesMedia Queries直译过来就是“媒体查询”,在我们http://i.cnblogs.com/EditPosts.aspx?opt=1平时的Web页面中head部分常看到... 阅读全文

posted @ 2014-08-04 22:34 jec 阅读(121) 评论(0) 推荐(0) 编辑

2014年6月22日

简单弹出层示例

摘要: //背景层,通过设置它的z-index属性比当前页大,达到覆盖效果并设置高宽和当前页的一样,再加上设置透明度,并且使用绝对定位 //显示层,也是设置它的z-index比背景层大,同样使用绝对定位。 关闭 ... 阅读全文

posted @ 2014-06-22 19:13 jec 阅读(224) 评论(0) 推荐(0) 编辑

2014年6月18日

mysql查询排名

摘要: student_work表student_info表sql语句:按grade从高到低排名结果: 阅读全文

posted @ 2014-06-18 23:21 jec 阅读(157) 评论(0) 推荐(0) 编辑

ajax 简单学习

摘要: 客户端代码function login(type) { $.ajax({ type: "post", url: "logindo.aspx", data: { user: $("#name").val(),//对应的值 ... 阅读全文

posted @ 2014-06-18 21:18 jec 阅读(154) 评论(0) 推荐(0) 编辑

js ajax 传送xml dom对象到服务器

摘要: 客户端代码 1 服务器端代码 1 protected void Page_Load(object sender, EventArgs e) 2 { 3 string res; 4 Request.ContentEncoding = ... 阅读全文

posted @ 2014-06-18 21:11 jec 阅读(1003) 评论(0) 推荐(0) 编辑

导航