一个不撞南墙不回头的傻孩子
1. 只显示一行数据的话: 给容器设置height和line-height,并使两个值相等,再加上over-flow:hidden .test{ height:40px; line-height:40px; overflow:hidden; }优点:1.
background-image:url(图片地址);background-repeat:no-repeat; //不平铺background-position: center; //定位居中background-attachment: fixed; //属性设置背景图像是否固定或者随着页面的其余部分滚动。
vertical-align: middle; vertical-align 属性设置元素的垂直对齐方式。baseline 默认。元素放置在父元素的基线上。sub 垂直对齐文本的下标。super 垂直对齐文本的上标top 把元素的顶端与行中最高元素的顶端对齐text-top 把元素的顶端与父元素字体的顶端对齐middle 把此元素放置在父元素的中部。
div{ box-shadow: 10px 10px 5px #888888;} 语法:box-shadow: h-shadow v-shadow blur spread color inset; 值 描述 测试h-shadow 必需。
修饰CSS:hr:before { content: "??";} hr:after { content: " This is an element";} 关键就是使用:before和:after这两个伪类。
1.去掉input外框的css: input { outline : none; //去掉外框 //outline:medium; } input:focus { outline : none; } outline-offset: 10px ;设置外框的距离 PS:CSS...
初级参数:border-radius: 4px;中级参数:border-radius: 4px 6px 6px 4px;终极参数:border-radius: 5px 5px 3px 2px / 5px 5px 1px 3px; 终极解释:斜线前面的影响的是水平方向,斜线后面影响的是垂直方向,各个...
cursor:pointer; //鼠标悬浮样式
1)、div{ cursor:default }默认正常鼠标指针2)、div{ cursor:hand }和div{ cursor:text } 文本选择效果3)、div{ cursor:move } 移动选择效果4)、div{ cursor:pointer } 手指形状 链接选择效果5)、div{...