1.<meta charset="utf-8"> 2.属性:width:宽度 height:高度 3.背景:background background-attachment:fixed; 背景是否滚动 background-color:gray;背景颜色 background-image:url(b ...
分类:
其他好文 时间:
2016-07-30 16:49:47
阅读次数:
395
background-attachment 背景图像是否随着页面滚动(是否fixed) letter-spacing 字符间距 word-spacing 字间距 line-height 行高 text-decoration 修饰(下划线) text-indent 首行缩进 ...
分类:
Web程序 时间:
2016-07-25 14:23:55
阅读次数:
167
摘录自:http://blog.csdn.net/wangzhi_821/article/details/5047777 文件下载时常会出现如下问题: response.setHeader("Content-disposition","attachment; filename="+as+"");如果 ...
分类:
其他好文 时间:
2016-07-14 21:48:24
阅读次数:
2680
<?php header('Content-Type: application/vnd.ms-excel'); header('Content-Disposition: attachment; filename=demo.xls'); header('Pragma: no-cache'); head ...
分类:
Web程序 时间:
2016-07-14 19:04:06
阅读次数:
212
PPT下载地址1(国外服务器):http://blog.s135.com/attachment/201105/2011phptc_zy.zip PPT下载地址2(国内服务器):http://ishare.iask.sina.com.cn/f/15231659.html 原文:http://blog. ...
分类:
Web程序 时间:
2016-07-13 06:43:06
阅读次数:
299
CSS中背景的使用 CSS中列表的使用 15.1 CSS中背景的使用 属性名称 属性值 说明 background-attachment scroll 设置背景图像会随视窗滚动 条的移动而移动。 ... ...
分类:
Web程序 时间:
2016-07-11 23:41:35
阅读次数:
191
// 0> 图片附件 let attachment = NSTextAttachment() attachment.image = #imageLiteral(resourceName: "d_aini") let height = label.font.lineHeight attachment. ...
分类:
移动开发 时间:
2016-07-10 21:49:05
阅读次数:
311
// 1> Attachment - 附件 NSTextAttachment *attachment = [[NSTextAttachment alloc] init]; attachment.image = [UIImage imageNamed:@"d_aini"]; // 提示 lineHei ...
分类:
其他好文 时间:
2016-07-10 21:34:33
阅读次数:
131
1.关于“下载” 需要设置页面header的一个属性为:Content-Disposition: attachment; filename=下载的文件.txt 如: 2.关于Execl 使用jxl的 jxl地址:http://www.andykhan.com/jexcelapi/download.h ...
分类:
Web程序 时间:
2016-07-04 17:10:27
阅读次数:
362
背景关联 如果文档比较长,那么当文档向下滚动时,背景图像也会随之滚动。当文档滚动到超过图像的位置时,图像就会消失。 您可以通过 background-attachment 属性防止这种滚动。通过这个属性,可以声明图像相对于可视区是固定的(fixed),因此不会受到滚动的影响: ...
分类:
其他好文 时间:
2016-06-22 23:39:00
阅读次数:
226