css_3

摘要: 定位静态定位:position:static固定定位:position:fixed;相对定位 position:relative绝对定位 position:absolute触发bfc元素根元素floatoverflow auto scroll hiddendisplay:teble-cea .tab 阅读全文
posted @ 2017-11-19 15:48 李亿万 阅读(88) 评论(0) 推荐(0) 编辑

css_4

摘要: 效果border:redius 圆角box-shadow: 0 0 0 # (x轴 y轴 阴影 颜色)background:linear-gredient ( red yellow)方向background:linear-gredient ( to right red yellow)transiti 阅读全文
posted @ 2017-11-19 15:47 李亿万 阅读(182) 评论(0) 推荐(0) 编辑

css-2

摘要: 样式color 颜色text-align 对齐方式font-size 大小不要设置奇数 至少12pxfont-weight 粗细backgrund-color 背景颜色font-size 大小font-size 大小font-style:italic 斜体aa:link 链接未被访问a:hover 阅读全文
posted @ 2017-11-19 15:46 李亿万 阅读(97) 评论(0) 推荐(0) 编辑

css

摘要: css cascading style sheets 是一个使用字体颜色格式内容的外观的表示型语言 样式 外部样式link 内部样式表<style>写在head中 行内样式表《style》写在body中 选择器 元素选择器 类选择器 类名{声明快} id选择器:#id名{} 属性在文档中只能使用一次 阅读全文
posted @ 2017-11-19 15:45 李亿万 阅读(150) 评论(0) 推荐(0) 编辑

c#基础入门(算术运算符++ --)

摘要: 运算符又名操作符是用于运算的符号,作用于一个或多个的操作数。(操作数:参与运算的数据。) 运算符++和-- ++,叫做自加运算符。比如今天22号,明年长了一天,用代码写出来是这样: Number++;与Number=Number+1;作用相同,都是变量的值+1。 --,叫做自减运算符。比如今天22号 阅读全文
posted @ 2017-11-05 11:12 李亿万 阅读(1992) 评论(0) 推荐(1) 编辑

c#基础入门(数据类型)

摘要: 字符类型 char ,存储用‘’(英文单引号)括起来的一个单个字符。例如: char Size='大';//存储大小 字符串类型 string ,存储用“”(英文双引号)括起来的一串字符,不限量文字。例如: string User name="请叫我大神";//存储用户名 整数类型 int ,存储整 阅读全文
posted @ 2017-11-05 10:58 李亿万 阅读(130) 评论(0) 推荐(0) 编辑