码迷,mamicode.com
首页 >  
搜索关键字:content assist    ( 25844个结果
css限制图片大小,避免页面撑爆
/*==========限制图片大小======避免页面撑暴========*/img { max-width:100%;width:expression(width>669?"100%":width+"px");}--说明 .content img { max-width:100%;width:e...
分类:Web程序   时间:2014-05-27 01:38:06    阅读次数:292
CSS命名规范
CSS命名规范CSS样式命名整理页面结构容器: container/wrap 整体宽度:wrapper 页头:header 内容:content 页面主体:main 页尾:footer 导航:nav 侧栏:sidebar 栏目:column 中间内容:center导航导航:nav 导航:mainba...
分类:Web程序   时间:2014-05-27 01:32:59    阅读次数:374
CSS命名规范(规则)
常用的CSS命名规则头:header内容:content/container尾:footer导航:nav侧栏:sidebar栏目:column页面外围控制整体佈局宽度:wrapper左右中:left right center登录条:loginbar标志:logo广告:banner页面主体:main热...
分类:Web程序   时间:2014-05-27 01:25:49    阅读次数:405
父div高度不能根据子div高度自动变化的解决方案
1 2 3 当content内容多时,即使parent设置了高度100%或auto,在不同浏览器下还是不能完好的自动伸展。解决方案如下:1 2 3 4 在层的最下方产生一个高度为1的空格,可解除这个问题。 另外还有这样写的:或者。
分类:其他好文   时间:2014-05-27 00:44:54    阅读次数:253
chrome extensions 中的交互
background与content_script的交互 其所指为当前网页与扩展插件之间的交互。使用chrome.* API进行通信。 background向content_script发送消息 background.js 1 chrome.tabs.sendMessage(tabI...
分类:其他好文   时间:2014-05-24 05:26:47    阅读次数:286
JSON
![Mou icon](http://ipweblab.com/wp-content/uploads/2013/10/json_logo-240x180.png)####JSON(JavaScript Object Notation) JSON:一种轻量级的数据交换格式。特点:易于人阅读和编写。同时...
分类:Web程序   时间:2014-05-24 03:28:51    阅读次数:360
GPGPU OpenCL/CUDA 高性能编程的10大注意事项
转载自:http://hc.csdn.net/contents/content_details?type=1&id=3411.展开循环如果提前知道了循环的次数,可以进行循环展开,这样省去了循环条件的比较次数。但是同时也不能使得kernel代码太大。 1 #include 2 using namesp...
分类:其他好文   时间:2014-05-23 23:56:27    阅读次数:556
获取span里面的值(特殊情况下 )
A 123 var a = $(".content")[0].firstChild.data; function al(){ alert(a); } window.onload=al;...
分类:其他好文   时间:2014-05-22 07:00:08    阅读次数:254
用 Python 替代 Bash 脚本(转)
add by zhj: 其实作者是想说用Python来做那些Bash实现起来比较麻烦的部分,即将Bash与Python结合使用。英文原文:http://www.linuxjournal.com/content/python-scripts-replacement-bash-utility-scrip...
分类:编程语言   时间:2014-05-20 08:53:25    阅读次数:735
Android -- 短信
背景 主要代码 发送按钮的监听器:phone_number_editText = (EditText) findViewById(R.id.phone_number_editText); sms_content_editText = (EditText) findViewById(R....
分类:移动开发   时间:2014-05-19 14:49:49    阅读次数:335
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!