上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 215 下一页
摘要: function CreateThread( lpThreadAttributes: Pointer; {安全设置} dwStackSize: DWORD; {堆栈大小} lpStartAddress: TFNThreadStartRoutine; {入口函数} lpParameter: Pointer; ... 阅读全文
posted @ 2009-02-10 16:36 万一 阅读(28631) 评论(6) 推荐(2) 编辑
摘要: 多线程应该是编程工作者的基础技能, 但这个基础对我来讲的确有点难(起码昨天以前是这样). 开始本应该是一篇洋洋洒洒的文字, 不过我还是提倡先做起来, 在尝试中去理解. 先试试这个: procedure TForm1.Button1Click(Sender: TObject); var i: Integer; begin for i := 0 to 500000 do begi... 阅读全文
posted @ 2009-02-05 16:26 万一 阅读(46304) 评论(90) 推荐(7) 编辑
摘要: 样式表可以是外部的、内联的或嵌入的; 链接外部样式文件一般是:<link rel="stylesheet" type="text/css" href="xxx.css" media="all"这要写在 Head 标签内, 其内容不区分大小写, 其中的双引号也可以是单引号、也可省略; 逐个解释一下:link: 是 HTML 的常用标签, 它的作用可不仅仅是链接外部样式, 譬如指定地址栏的图标... 阅读全文
posted @ 2009-02-01 22:04 万一 阅读(5726) 评论(7) 推荐(1) 编辑
摘要: a:link {未访问链接}a:hover {鼠标悬停}a:active {鼠标点下}a:visited {已访问链接}很多属性(不是所有)都可以 inherit(继承), 测试: zoom: normal(默认)、比例值.cursor(鼠标指针样式):defaulthandwaithe... 阅读全文
posted @ 2009-02-01 12:24 万一 阅读(2231) 评论(2) 推荐(0) 编辑
摘要: list-style-type (指定类型) list-style-image (指定图片) list-style-position (指定位置) list-style (综合设置) marker-offset (不支持) 使用 list-style 可单独或综合设置: 类型、图片、位置, 无顺序; 如果同时设置了图片和类型, 图片会替换类型; ... 阅读全文
posted @ 2009-02-01 09:54 万一 阅读(2360) 评论(0) 推荐(0) 编辑
摘要: float clear display visibility float: none(不浮动)、left(浮在左边)、right(浮在右边). clear: none(允许浮动)、left(取消左浮动)、right(取消右浮动)、both(取消左右浮动). display: inline(并行)、block(分行)、none(隐藏) display: inline ... 阅读全文
posted @ 2009-01-31 23:11 万一 阅读(3413) 评论(2) 推荐(0) 编辑
摘要: width height max-width max-height min-width min-height position - top、right 、bottom 、left z-index clip overflow(overflow-x、overflow-y) scrollbar-base-color scrollbar-face-color scrollbar-track-col... 阅读全文
posted @ 2009-01-31 13:34 万一 阅读(2841) 评论(0) 推荐(0) 编辑
摘要: line-height word-spacing letter-spacing text-align vertical-align text-indent white-space word-wrap word-break text-transform direction unicode-bidi writing-mode text-decoration text-underline-positi... 阅读全文
posted @ 2009-01-30 18:29 万一 阅读(3543) 评论(0) 推荐(0) 编辑
摘要: 问题来源: http://www.cnblogs.com/del/archive/2009/01/30/1381263.html#1439476 这个例子是把一张图片平均分成了 4 份, 顺序是: 左、右、上、下; 没使用循环操作, 显得有点笨, 但容易理解. unit Unit1; interface uses Windows, Messages, SysUtils, Varian... 阅读全文
posted @ 2009-01-30 10:49 万一 阅读(2848) 评论(12) 推荐(0) 编辑
摘要: font font-family font-size font-weight font-style font-variant 另外 font-size-adjust 和 font-stretch 从 CSS 2.1 已废弃, 就不再学习了. font-family(指定字体): 如果字体名包含空格或其他特殊符号, 应使用引号(双引号或单引号): 可以同时指定多个字体(逗号分割),... 阅读全文
posted @ 2009-01-29 16:58 万一 阅读(3822) 评论(5) 推荐(0) 编辑
上一页 1 ··· 72 73 74 75 76 77 78 79 80 ··· 215 下一页