css样式笔记
- text-indent: 2rem ; 文本缩进
- text-align: center left right justify(两端对齐) inherit(从父元素继承)
- word-spacing :2rem 字间隔
- letter-spacing:2rem 字母间隔
- text-transform:none uppercase lowercase capitalize 字符转换
- text-decoration:none underline overline(下划线) line-through(上划线) blink(文本闪烁)
- white-space :normal 处理空白格
- direction:ltr rtl inherit 设置文本方向
- line-height: 设置行高
- font-family font-size font-style font-weight
- a a:link - 普通的、未被访问的链接 a:visited - 用户已访问的链接 a:hover - 鼠标指针位于链接的上方 a:active - 链接被点击的时刻
- list-style-type : square 列表样式 list-style-image : url(xxx.gif) list-style : url(example.gif) square inside
- border-collapse:collapse; 设置是否把表格边框合并为单一的边框
- border-spacing:10px 50px 相邻单元格的间距
- caption-side:设置表格标题的位置
- empty-cells:设置是否显示表格中的空单元格。
- outline-color 设置轮廓的颜色
- outline-style 设置轮廓的样式
- outline-width 设置轮廓的宽度
- padding,margin,border 自行了解
- CSS 定位和浮动
- positon: static relative absolute (子绝父相) overflow: hidden auto(元素溢出的解决) z-index (层级顺序) vertical-align:(元素的垂直对齐方式)
- float: right left 清除浮动的几种方法
- 水平对齐: margin: auto; width:70%;
- 使用 position 属性进行左和右对齐 :position:absolute;right:0px; width:300px;
- 使用 float 属性来进行左和右对齐:float:right; width:300px;
- clear : left(在左侧不允许浮动元素) right both (清除浮动)
- cursor:pointer crosshair 等: 指针类型
- display: inline block inline-block等
- visibility: hidden collapse 设置元素可见与不可见
- opacity :0.6 图片透明度
img:hover
{
opacity:1.0;
filter:alpha(opacity=100); /* 针对 IE8 以及更早的版本 */
}