01 2010 档案
css 应该注意的兼容问题
摘要: 1:div左右分列注意:padding margin使用padding,而不能使用margin,margin 会导致ie6不兼容例如:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><bodystyle="margin:0px;"><divstyle="width:990px;margin:0pxauto;background-color:#ff0000;padding:0px"><divstyle="width:阅读全文
posted @ 2010-01-30 10:24 阿米 阅读(58) | 评论 (0) 编辑
网上找的,C# 小票打印机 直接打印,备用
摘要: C# 小票打印机 直接打印 无需驱动2009-07-11 10:53 class LPTControl { #region API函数 [StructLayout(LayoutKind.Sequential)] private struct OVERLAPPED { int Internal; int InternalHigh; int Offset; int OffSetHigh; int hEvent; } [DllImport("kernel32.dll")] private static extern int CreateFile(string lpFileName, uint dwDesiredAccess, int dwShareMode, int lpSecurityAt阅读全文
posted @ 2010-01-27 17:52 阿米 阅读(956) | 评论 (0) 编辑
firefox不支持background-position-x,background-position-y
摘要: 今天又学了一招,firefox不支持background-position-x,background-position-y 例如: background-position-x:30px; background-position-y:5px; 需要改成: background-position:30px 5px; 阅读全文
posted @ 2010-01-21 09:40 阿米 阅读(472) | 评论 (1) 编辑