web 做网页的一些笔记
1、CSS background
一般的设置为以下:
background::#39414A url(http://static.jquery.com/files/rocker/images/bg-home-tile.jpg) repeat-x fixed
50% 0;
background-color:#39414A;
background-image: url(http://static.jquery.com/files/rocker/images/bg-home-tile.jpg) !important;
background-repeat:repeat-x;
background-attachment:fixed;
background-position:50% 0;
2、CSS margin
#jq-siteContain
{
width:910px;
margin:0 auto; /*top=0 right=auto bottom=0 left=auto*/ 这样设置最大的好处是会根据浏览器自动居中
background-color:#066;
}
<div id="jq-siteContain">
sdfsdfsd
</div>
3 CSS position
默认值:
static | 默认值。没有定位,元素出现在正常的流中(忽略 top, bottom, left, right 或者 z-index 声明)。 |
absolute |
生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。 元素的位置通过 "left", "top", "right" 以及 "bottom" 属性进行规定。 |
所以如果我们要设置一个元素的left,top,right,bottom,就必须要设置元素的position=absolute ,设置父元素的position=absolute/relative;而magin只与父元素有关,和position无关,而且他们一个是绝对的,一个是相当的。