
Web前端
文章平均质量分 68
jokes000
这个作者很懒,什么都没留下…
展开
-
CSS3 语法以及优化
属性选择器1.E[foo^="bar"]:选择匹配E的元素,前匹配。例如:body[lang^="en"] 匹配,而不匹配2.E[foo$="bar"]:选择匹配E的元素,后匹配。例如:img[src$="jpg"] 匹配,而不匹配3.E[foo*="bar"]:选择匹配E的元素,匹配任意字符。注:E可省略,表示可匹配任意类型的元素。结构伪类选择器(Struct原创 2013-01-29 21:09:21 · 2364 阅读 · 0 评论 -
整理一些好用的css, javascript资源网站等
CSS:css3信息:http://www.css3.info/css3生成器:http://css3generator.com/css3 cross brower生成器:http://css3please.com/Style Master CSS Editor for Windows and Mac OS X:http://westciv.com/tools/index.html原创 2013-08-18 09:16:48 · 1832 阅读 · 0 评论 -
Ubuntu server配置IP地址
转自:http://www.yimiju.com/articles/411.html因为Ubuntu Server不像桌面版Ubuntu那样,可以非常简单的通过图形操作界面配置网卡IP。所以Yimiju再此讲解下手动修改网卡IP的两种方法:第一种方法:常规方法1、登录Ubuntu Server,然后通过“sudo -s” 切换到root用户。2、输入“cd转载 2013-04-12 13:13:04 · 1787 阅读 · 0 评论 -
Ruby on Rails命令
页码为《Ruby on Rails Tutorial 2nd Edition》创建controller:P86rails generate controller StaticPages home help --no-test-framework之后,创建integration_testrails generate integration_test XXX创建原创 2013-03-27 17:02:17 · 1203 阅读 · 0 评论 -
Ruby Test步骤
1. Start Spork in a terminal window.2. Write a single test or small group of tests.3. Run Command-Shift-R to verify that the test or test group is red.4. Write the corresponding application code翻译 2013-02-24 22:19:28 · 1160 阅读 · 0 评论 -
jQuery笔记
消失:$(document).ready(function() { $('div').fadeOut(1000);});原创 2013-02-05 12:38:30 · 813 阅读 · 0 评论 -
HTML元素用法
Ordered Lists:HTML: Lists List of my favorite things raindrops on roses whiskas on kittens call of duty: modern warfare 效果:粗体:斜体:原创 2013-02-03 18:59:47 · 1159 阅读 · 0 评论 -
利用HTML+CSS创建Form表单
HTML: Web Form Contact Us! First name: Last name: E-mail原创 2013-02-03 18:03:48 · 6784 阅读 · 0 评论 -
利用HTML+CSS创建Button
HTML: Button Submit! ✓ X CSS:#orange { width: 100px; height: 60px; background-color: #F38630; color: #FFFFFF; border-radius: 5px; border: 4px solid #原创 2013-02-03 17:46:01 · 3731 阅读 · 0 评论 -
CSS设计的简单登录表格
设计可用的表单h1{ font-size:20px; }#login { width:400px; padding:1em 2em 0 2em; font-size:12px;}label { line-height:26px; display:block; font-weight:bold;}#name, #password {原创 2013-01-29 22:14:09 · 1043 阅读 · 0 评论 -
我的Sublime Text 3配置 and vim conf
{ "auto_indent": true, "color_scheme": "Packages/Color Scheme - Default/Monokai Bright.tmTheme", "font_face": "monaco", "font_size": 12, "indent_to_bracket": true, "smart_indent": true, "tab_si原创 2014-01-03 17:05:01 · 7228 阅读 · 0 评论