摘要: mysql查询表基本操作 数据库表的创建create table <表名>(<列名> <数据类型及长度> [not null],<列名> <数据类型及长度>,...<列名> <数据类型及长度>)删除表drop table <表名> 导入导出数据把表变成sql代码备份与还原 增,删,改,查 CRUD 阅读全文
posted @ 2016-05-26 08:43 五月十九 阅读(114) 评论(0) 推荐(0) 编辑
摘要: css字体样式(Font Style) 属性 css文本样式 序号 中文说明 标记语法 1 字体样式 {font:font-style font-variant font-weight font-size font-family} 2 字体类型 {font-family:"字体1","字体2","字 阅读全文
posted @ 2016-05-25 08:27 五月十九 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 1.1边框 其中边框圆角、边框阴影属性,应用十分广泛,兼容性也相对较好,具有符合渐进增强原则的特性,我们需要重点掌握。 1.1.1边框圆角 border-radius 每个角可以设置两个值,x值,y值 1:边框圆角处理 2:正方形 border-radius{ width:200px; height 阅读全文
posted @ 2016-05-12 15:29 五月十九 阅读(187) 评论(0) 推荐(0) 编辑
摘要: <title>无标题文档</title><link href="xinwangye.css" rel="stylesheet" type="text/css" /><style type="text/css"> *{ margin:0px; padding:0px; }</style> </head 阅读全文
posted @ 2016-05-06 15:23 五月十九 阅读(150) 评论(0) 推荐(0) 编辑
摘要: <table></table>表格 width:宽度。可以用像素或百分比表示。 常用960像素。 border:边框,常用值为0。 cellpadding:内容跟单元格边框的距离,常用值为0。 cellspacing:单元格与单元格之间的间距,常用值为0。 align:对齐方式。 bgcolor:背 阅读全文
posted @ 2016-05-04 12:54 五月十九 阅读(106) 评论(0) 推荐(0) 编辑
摘要: body 的属性: bgcolor 页面背景色 text 文字颜色 topmargin 上页边距 leftmargin 左页边距 rightmargin 右页边距 bottommargin 下页边距 background 背景壁纸 1.一般标签: 格式控制标签 控制字体:<font face="Ti 阅读全文
posted @ 2016-05-04 12:51 五月十九 阅读(165) 评论(0) 推荐(0) 编辑
摘要: <body><center><table width="960" border="1" cellpadding="0" cellspacing="0"> <tr height="30"> <td width="162" colspan="5"><center>个人简历</center></td> < 阅读全文
posted @ 2016-05-03 14:17 五月十九 阅读(125) 评论(0) 推荐(0) 编辑
摘要: static void Main(string[] args) { ////无参无反 //cz(); ////无参有返 //bool bbb = chaz(); //if (bbb == true) //{ // Console.WriteLine("找到啦"); //} //else //{ // 阅读全文
posted @ 2016-04-25 10:27 五月十九 阅读(285) 评论(0) 推荐(0) 编辑
摘要: int[,] a = new int[5, 6]; for (int i = 0; i < 5;i++ ) { a[i, 0] = i + 1; Console.Write("请输入{0}号学生的语文成绩",i+1); int yw = Convert.ToInt32(Console.ReadLin 阅读全文
posted @ 2016-04-23 11:02 五月十九 阅读(331) 评论(0) 推荐(0) 编辑
摘要: Console.WriteLine("请输入你的qq邮箱"); string yx = Console.ReadLine(); int a = yx.LastIndexOf("qq"); int b = yx.LastIndexOf("@"); if ((a - b) == 1) { Console 阅读全文
posted @ 2016-04-21 14:58 五月十九 阅读(229) 评论(0) 推荐(0) 编辑