Html/CSS---定位 与背景

2018-09-11  本文已影响0人  岸与海

定位

position属性可以控制Web浏览器如何以及在何处显示特定的元素
可以使用position属性把一个元素放置到网 页中的任何位置。
可选值:

z-index---元素层次

z-index可以指定一个整数作为参数,值越 大元素显示的优先级越高,也就是z-index 值较大的元素会显示在网页的最上层。

opcity:透明(只能在0~1取值)

IE6:filter:alpha(opcity=50)

背景

background-color

background-image

background-repeat

            width: 1024px;
            height:724px;
            margin: 0 auto;
            background-color: #bfa;
            background-image:url(img/1.jpg); 
            background-repeat: repeat-y;

background-position

background-attachment

background-attachment用来设置背景图 片是否随页面滚动。
可选值:
scroll:随页面滚动
fixed:不随页面滚动

上一篇下一篇

猜你喜欢

热点阅读