码迷,mamicode.com
首页 >  
搜索关键字:orange    ( 676个结果
针对IE6的一些CSS Hack编写时的注意点小结
区分出IE6的hack写法1.区别IE6、7与FF/IE8: JavaScript Code复制内容到剪贴板 background:blue;*background:orange; 引用显示效果:IE 6/7:orangeFF/IE8:blue原理:FF/IE8不支持*开头,而IE6/7都支持。 2 ...
分类:Web程序   时间:2017-03-05 15:56:37    阅读次数:201
翻译1 英语的五种基本句型
1 主语+不及物动词(SV) She comes. Wheels of history turn. 2 主语+系动词+表语(SVC) There be 句型也属于这一类 表语:名词 、代词、形容词、副词、分词、介词短语、动词不定式、从句等 系动词:①be动词 ②become 、turn、remain ...
分类:其他好文   时间:2017-03-03 15:46:21    阅读次数:176
week_one-python基础 列表 增删改查
# Author:larlly'''#列表增删改查#定义列表name = ["wo","ni","ta","wo"] #定义列表num_list = list(range(1,10)) #range生成范围的数,强制转化为列表#查print(num_list)print(name[0])print( ...
分类:编程语言   时间:2017-03-01 16:23:45    阅读次数:164
源码-0203-06-自定义等高cell05-代码-Autolayout
// // XMGDealsViewController.m // 06-自定义等高cell01-storyboard #import "XMGDealsViewController.h" #import "XMGDeal.h" #import "XMGDealCell.h" @interface ... ...
分类:其他好文   时间:2017-02-24 15:42:30    阅读次数:171
关于javascript实现的网站页面侧边悬浮框"抖动"问题
<!doctype html><html><head><meta charset="utf-8"><title>无标题文档</title><style>*{margin:0px; padding:0px;}body{height:2000px;}#div1{width:100px; height:2 ...
分类:编程语言   时间:2017-02-19 23:40:45    阅读次数:233
HTML 函数的使用
函数的使用 ...
分类:Web程序   时间:2017-02-16 17:32:17    阅读次数:308
JS数组处理
一.定义数组: 方法1 方法2: 方法3. 二.数组修改 使用for循环遍历 ①数组中 指定值得位置 ②合并数组 concat() ③数组转化为字符串 tostring() 或者 join()【join可以随意设置间隔 字符 tostring 不行】 结果:Banana--Orange--Apple ...
分类:编程语言   时间:2017-02-12 15:33:42    阅读次数:172
.net枚举处理
enum MyColor : byte { Red, Green, Blue, Orange } string[] ss = Enum.GetNames(typeof(MyColor)); Array bb = Enum.GetValues(typeof(MyColor)); (MyColor)bb ...
分类:Web程序   时间:2017-02-05 12:44:59    阅读次数:153
宽度不固定元素水平居中
元素浮动以后不能通过text-align:center或是margin:0 auto达到居中效果,我们可以这样做是浮动元素居中:为父盒子和子盒子position: relative;然后父盒子left: 50%; 子盒子right:50%;就可以达到居中效果了。 另外如果元素不浮动如何达到居中效果呢 ...
分类:其他好文   时间:2017-01-23 23:45:21    阅读次数:180
[Vue] Update Attributes, Classes and Styles in Vue.js with v-bind
Use v-bind:class and v-bind:style to compute html classes and inline styles from component data. Vue.js will automatically add vendor prefixes when us ...
分类:Web程序   时间:2017-01-22 08:15:45    阅读次数:228
676条   上一页 1 ... 49 50 51 52 53 ... 68 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!