摘要: Meta1、div span 2、三种样式表 内联样式(行内样式) 嵌入样式 外部样式就近原则 3、常见样式 复合样式background border css单位 % px em background-color color border-style border-width border-color display:none、block块、inline内嵌 cursor list-style-type:none float clear 清除浮动 margin 间距 padding 填充 position 相对 绝对 固定 帮助 4、样式选择器 标签选择器 input 类选择器 .class 阅读全文
posted @ 2012-07-19 23:17 zxp19880910 阅读(177) 评论(0) 推荐(0) 编辑
摘要: HTML 基础 www.55.la 网站美工素材网 指定网页编码:<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />浏览器:输入网址点击链接后,向服务器请求页面, 服务器将页面编译解析出来并将HTML JS CSS等内容返回给浏览器 展现在用户面前的是一个页面 2.浏览器的兼容性问题:开发注意 3.HTML和XML的联系 , 区别: 书写规范,标签必须前后封闭,属性值带引号"" 4.HTML的注释: <!--注释内容--> 5.敏感字符 阅读全文
posted @ 2012-07-19 23:16 zxp19880910 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 1、html基本结构 <html> <head> <title>我的第一个网页</title> </head> <body bgcolor="red" background="bg.jpg"> </body> </html> 2、文本相关标签 <H1> - <H6> <font> color size face <p> align <br> <center> <b> <i 阅读全文
posted @ 2012-07-19 23:15 zxp19880910 阅读(152) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SqlClient; using System.Data;namespace MySqlHelper { public class Class1 { static string strconn = System.Configuration.ConfigurationManager.ConnectionStrings["sql"].ConnectionString; // 阅读全文
posted @ 2012-07-19 23:07 zxp19880910 阅读(115) 评论(0) 推荐(0) 编辑