css 中的属性

来源:互联网 发布:淘宝店提高销量有用吗 编辑:程序博客网 时间:2024/06/11 16:57

一:css中 常用的属性:
1.宽和高
width 宽 height:高
min-width min-height(先知道)
2.单位:
px像素 % 百分比 em相对单位(了解就好)
3.字体:
a.color 字体颜色
b. font-size 字体大小 浏览器默认是16px
c.font-family 字体样式
d.font-weight:bold;加粗;不加粗:normal
e.font-style :italic斜体 不加斜:normal 字体风格
4.文本
a.border-radius 圆角 如果设置成正圆,宽高要一致 设置为 50%;
b.text-decoration:none 去掉下划线
c.text-shadow:color 5px 5px 模糊度给字体加阴影
d.line-height 行高
如果想让文字垂直居中 设置的值要和你块的高度一致
e.text-align:center 垂直居中
5.列表:
ul ol dl
1.list-style:none;去掉列表前的样式
2.list-style-image:url(‘mv.jpg’) 了解就好
6.背景
1.background-image:url(‘图片地址’);
2.background-color = background 背景颜色
3.背景定位图 (下面我们会写例子) div{width:44px;height:27px;background:url(‘zuiba.jpg’)}
4.雪碧图定位
i{dislay:block;width;height;background:url(”) no-repeat x y}
7.透明度
a. opacity:0.5 半透明 取值范围是 0 - 1之间
b. 兼容ie低版本 filter:alpha(opacity=50) 取值范围是 1 - 100之间 div{width:400px;height:400px;background:rgba(112,113,114 , 0.5 );}
div{width:400px;height:400px;background:rgb(112,113,114);}

原创粉丝点击